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

属性值

一个字符串,指定此绑定的值的格式。

注解

用于为绑定值提供显示格式,或使用其他文本组合值。 决定如何利用字符串格式,但所有支持标准Format约定的实现者BindingBase

Binding 允许一个参数作为其单一值。

一个简单的示例,显示组合文本,以及确定具有 a 的值的显示格式 Binding

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

适用于

另请参阅