BindingBase.StringFormat 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置此绑定的字符串格式。
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}"
});