DisplayFormatAttribute.ApplyFormatInEditMode 属性

定义

获取或设置一个值,该值指示数据字段处于编辑模式时,是否将 DataFormatString 属性指定的格式设置字符串应用于字段值。

public:
 property bool ApplyFormatInEditMode { bool get(); void set(bool value); };
public bool ApplyFormatInEditMode { get; set; }
member this.ApplyFormatInEditMode : bool with get, set
Public Property ApplyFormatInEditMode As Boolean

属性值

如果在编辑模式中将格式设置字符串应用于字段值,则为 true;否则为 false。 默认值为 false

示例

以下示例演示如何在数据字段处于编辑模式时使用 ApplyFormatInEditMode 属性设置日期信息的显示格式。 用于数据字段的数据字段格式是通过设置 DataFormatString 属性指定的。

// Display date data field in the short format 11/12/08.
// Also, apply format in edit mode.
[DisplayFormat(ApplyFormatInEditMode=true, DataFormatString = "{0:d}")]
public object SellStartDate;
' Display date data field in the short format such as 11/12/08.
' Also, apply format in edit mode.
<DisplayFormat(ApplyFormatInEditMode:=True, DataFormatString:="{0:d}")> _
Public SellStartDate As Object

注解

默认情况下,仅当数据绑定控件处于只读模式时,由 属性指定的 DataFormatString 格式字符串才会应用于字段值。

适用于