DynamicControl.DataFormatString 属性

定义

获取或设置一个字符串,该字符串指定字段值的显示格式。

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

属性值

String

指定字段值的显示格式的格式化字符串。 默认值为空字符串 (""),表示尚无特殊格式设置应用于该字段值。

注解

使用属性 DataFormatString 为控件中显示的 DynamicControl 值指定自定义显示格式。 如果未设置该 DataFormatString 属性,则不带任何特殊格式的字段值显示。

By default, the formatting string is applied to the field value only when the Mode property is set to ReadOnly. 若要在编辑模式下将格式字符串应用于字段值,请将 ApplyFormatInEditMode 属性设置为 true

使用属性 DataFormatString 指定的显示格式特定于控件的 DynamicControl 此实例。 还可以通过向数据模型应用 DisplayFormatAttribute 数据模型并在构造函数中设置 DisplayFormatAttribute.DataFormatString 命名参数来更改整个应用程序的数据字段的显示格式。 有关详细信息,请参阅 ASP.NET 动态数据

适用于

另请参阅