Bagikan melalui


IValueProvider.IsReadOnly Properti

Definisi

Mendapatkan nilai yang menentukan apakah nilai kontrol bersifat baca-saja.

public:
 property bool IsReadOnly { bool get(); };
public bool IsReadOnly { get; }
member this.IsReadOnly : bool
Public ReadOnly Property IsReadOnly As Boolean

Nilai Properti

true jika nilainya baca-saja; false jika dapat dimodifikasi.

Contoh

Contoh berikut menunjukkan implementasi metode ini untuk kontrol yang memungkinkan nilainya diubah.

/// <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

Keterangan

Kontrol harus mengatur IsEnabledProperty ke true dan mengatur IsReadOnlyProperty ke false sebelum memungkinkan panggilan ke SetValue.

Berlaku untuk