KeyBinding.Gesture Свойство

Определение

Получает или задает жест, связанный с данным 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

Значение свойства

Последовательность клавиш. Значение по умолчанию — null.

Атрибуты

Исключения

задаваемое значение gesture не является KeyGesture.

Примеры

В следующем примере показано, как привязать KeyGesture к RoutedCommand с помощью ( KeyBinding в разметке и примерах кода указываются разные ключи, но в противном случае они эквивалентны).

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

Комментарии

За исключением функциональных и числовых клавиш клавиатуры, KeyGesture объект должен содержать Key и один или несколько ModifierKeys.

Применяется к

См. также раздел