IValueProvider.IsReadOnly 属性

定义

获取一个值,该值指定控件的值是否是只读的。

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

适用于