Aracılığıyla paylaş


IToggleProvider.ToggleState Özellik

Tanım

Denetimin geçiş durumunu alır.

public:
 property System::Windows::Automation::ToggleState ToggleState { System::Windows::Automation::ToggleState get(); };
public System.Windows.Automation.ToggleState ToggleState { get; }
member this.ToggleState : System.Windows.Automation.ToggleState
Public ReadOnly Property ToggleState As ToggleState

Özellik Değeri

ToggleState

Denetimin ToggleState .

Örnekler

Aşağıdaki örnekte, değiştirilebilen bir denetim için bu yöntemin uygulanması gösterilmektedir. Döndürülen ToggleState denetimin rengine bağlıdır; Bu, CheckBox denetiminin IsChecked özelliğine benzer.

/// <summary>
/// Retrieves the toggle state of the control.
/// </summary>
/// <remarks>
/// For this custom control the toggle state is reflected by the color 
/// of the control. This is analogous to the CheckBox IsChecked property.
/// Green   - ToggleState.On
/// Red     - ToggleState.Off
/// Yellow  - ToggleState.Indeterminate
/// </remarks>
ToggleState IToggleProvider.ToggleState
{
    get
    {
        return customControl.toggleStateColor[customControl.controlColor]; ;
    }
}
''' <summary>
''' Retrieves the toggle state of the control.
''' </summary>
''' <remarks>
''' For this custom control the toggle state is reflected by the color 
''' of the control. This is analogous to the CheckBox IsChecked property.
''' Green   - ToggleState.On
''' Red     - ToggleState.Off
''' Yellow  - ToggleState.Indeterminate
''' </remarks>
Private ReadOnly Property IToggleProvider_ToggleState() As ToggleState Implements IToggleProvider.ToggleState
    Get
        Return customControl.toggleStateColor(customControl.controlColor)

    End Get
End Property

Açıklamalar

Bir denetimin şu sırayla geçiş yapması ToggleState gerekir: On, Offve (destekleniyorsa) Indeterminate.

Şunlara uygulanır

Ayrıca bkz.