
UIElement.InputBindings Property
Gets the collection of input bindings associated with this element.
Assembly: PresentationCore (in PresentationCore.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/2006/xaml/presentation, http://schemas.microsoft.com/netfx/2007/xaml/presentation
Input bindings support the binding of commands to input devices. For example, MouseBinding implements input bindings that include properties that are particular to mouse devices.
The collection of input bindings will include both input bindings that pertain to the type as well as input bindings that are declared on the instance.
A related property, CommandBindings, maintains a collection of command bindings. These differ from input bindings in that they represent the next level down of command processing - actions that are tied to known commands.
The following example populates this property on a Window, with a single KeyBinding.
<Window.InputBindings> <KeyBinding Key="B" Modifiers="Control" Command="ApplicationCommands.Open" /> </Window.InputBindings>
For more information about the XAML syntax for collections, see XAML Syntax In Detail.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.