KeyBinding.Gesture Propriété

Définition

Obtient ou définit le mouvement associé à ce 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

Valeur de propriété

Combinaison de touches. La valeur par défaut est null.

Attributs

Exceptions

La valeur affectée à gesture n'est pas un KeyGesture.

Exemples

L’exemple suivant montre comment lier un KeyGesture à un RoutedCommand à l’aide d’un KeyBinding (les exemples de balisage et de code spécifient des clés différentes, mais sont sinon équivalents).

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

Remarques

À l’exception des touches de fonction et des touches numériques du clavier, un KeyGesture doit contenir un Key et un ou plusieurs ModifierKeys.

S’applique à

Voir aussi