KeyBinding.Gesture Propriedade

Definição

Obtém ou define o gesto associado a essa KeyBinding.

public:
 virtual property System::Windows::Input::InputGesture ^ Gesture { System::Windows::Input::InputGesture ^ get(); void set(System::Windows::Input::InputGesture ^ value); };
[System.ComponentModel.TypeConverter(typeof(System.Windows.Input.KeyGestureConverter))]
public override System.Windows.Input.InputGesture Gesture { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Windows.Input.KeyGestureConverter))>]
member this.Gesture : System.Windows.Input.InputGesture with get, set
Public Overrides Property Gesture As InputGesture

Valor da propriedade

A sequência de teclas. O valor padrão é null.

Atributos

Exceções

o valor para o qual o gesture está sendo definido não é um KeyGesture.

Exemplos

O exemplo a seguir mostra como associar um KeyGesture a um RoutedCommand usando um KeyBinding (os exemplos de marcação e código especificam chaves diferentes, mas são equivalentes de outra forma).

<Window.InputBindings>
  <KeyBinding Command="ApplicationCommands.Open"
              Gesture="CTRL+R" />
</Window.InputBindings>
KeyGesture CloseCmdKeyGesture = new KeyGesture(
    Key.L, ModifierKeys.Alt);

KeyBinding CloseKeyBinding = new KeyBinding(
    ApplicationCommands.Close, CloseCmdKeyGesture);

this.InputBindings.Add(CloseKeyBinding);
Dim CloseCmdKeyGesture As New KeyGesture(Key.L, ModifierKeys.Alt)

Dim CloseKeyBinding As New KeyBinding(ApplicationCommands.Close, CloseCmdKeyGesture)

Me.InputBindings.Add(CloseKeyBinding)

Comentários

Com exceção das teclas de função e das teclas numéricas do teclado, um KeyGesture deve conter um e um Key ou mais ModifierKeys.

Aplica-se a

Confira também