ContentElement.InputBindings Property

Definition

Gets the collection of input bindings that are associated with this element.

public:
 property System::Windows::Input::InputBindingCollection ^ InputBindings { System::Windows::Input::InputBindingCollection ^ get(); };
public System.Windows.Input.InputBindingCollection InputBindings { get; }
member this.InputBindings : System.Windows.Input.InputBindingCollection
Public ReadOnly Property InputBindings As InputBindingCollection

Property Value

The collection of input bindings.

Remarks

Input bindings support the binding of commands to input devices. For example, MouseBinding implements input bindings that include properties that are specific to mouse devices.

The collection of input bindings includes both input bindings that pertain to the type and also input bindings that are declared on the instance.

A related property, CommandBindings, maintains a collection of command bindings. These bindings differ from input bindings in that they represent the next level down of command processing - actions that are tied to known commands and class-specific handlers for them.

XAML Property Element Usage

<object>  
  <object.InputBindings>  
    oneOrMoreInputBindings  </object.InputBindings>  
</object>  

XAML Values

oneOrMoreInputBindings
One or more InputBinding elements (typically the KeyBinding or MouseBinding derived classes). Each of these is expected to have a Command and Gesture attribute set.

Applies to