KeyEventArgs.IsToggled Proprietà

Definizione

Ottiene un valore che indica se il tasto cui fa riferimento l'evento è nello stato attivato o disattivato.

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

Valore della proprietà

true se il tasto è attivato o disattivato; in caso contrario, false. Non è disponibile alcun valore predefinito.

Esempio

Nell'esempio seguente viene verificato se la chiave associata a un'istanza di KeyEventArgs viene disattivata ottenendo lo stato della IsToggled proprietà.

// e is a instance of KeyEventArgs.
// btnIsToggled is a Button.
if (e.IsToggled)
{
    btnIsToggle.Background = Brushes.Red;
}
' e is a instance of KeyEventArgs.
' btnIsToggled is a Button.
If e.IsToggled Then
    btnIsToggle.Background = Brushes.Red

Commenti

La Keyboard classe fornisce anche informazioni sullo stato dei tasti sulla tastiera. Ad esempio, il IsKeyToggled metodo restituisce se una chiave specificata è attivata.

Si applica a

Vedi anche