BindingBase.StringFormat プロパティ

定義

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

public string StringFormat { get; set; }
member this.StringFormat : string with get, set

プロパティ値

System.String

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

注釈

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

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

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

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

適用対象

こちらもご覧ください

  • <xref:System.String.Format*>