IValueProvider.IsReadOnly 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取一个值,该值指定控件的值是否是只读的。
public:
property bool IsReadOnly { bool get(); };
public bool IsReadOnly { get; }
member this.IsReadOnly : bool
Public ReadOnly Property IsReadOnly As Boolean
属性值
如果值为只读,则为 true
;如果它可以修改,则为 false
。
示例
以下示例演示了允许更改其值的控件的此方法的实现。
/// <summary>
/// Specifies whether the custom control is read only.
/// </summary>
bool IValueProvider.IsReadOnly
{
get
{
return false;
}
}
''' <summary>
''' Specifies whether the custom control is read only.
''' </summary>
Private ReadOnly Property IsReadOnly() As Boolean Implements IValueProvider.IsReadOnly
Get
Return False
End Get
End Property
注解
在允许调用 IsEnabledProperty 之前,控件应将其 true
设置为 IsReadOnlyProperty ,并将其 false
设置为 SetValue。