次の方法で共有


BindingBase.StringFormat プロパティ

定義

このバインドの文字列の形式を取得または設定します。

public:
 property System::String ^ StringFormat { System::String ^ get(); void set(System::String ^ value); };
public string StringFormat { get; set; }
member this.StringFormat : string with get, set
Public Property StringFormat As String

プロパティ値

このバインドの値の形式を指定する文字列。

注釈

バインド値の表示形式を指定したり、他のテキストと共に値を合成したりするために使用されます。 文字列形式の BindingBase 使用方法を決定する実装者が、すべてのサポート標準 Format 規則です。

Binding では、単一値に対して 1 つの引数を使用できます。

テキストの合成と値の表示形式の決定を示す簡単な例 Binding

Label label = new Label();
label.AddBinding (new Binding (Label.TextProperty, "Price") {
  StringFormat = "Price: {0:C2}"
});

適用対象

こちらもご覧ください