ContentElement::CommandBindings Property
.NET Framework (current version)
Gets a collection of CommandBinding objects that are associated with this element.
Assembly: PresentationCore (in PresentationCore.dll)
public: property CommandBindingCollection^ CommandBindings { CommandBindingCollection^ get(); }
Property Value
Type: System.Windows.Input::CommandBindingCollection^The collection of all CommandBinding objects.
A CommandBinding enables command handling of a specific command for this element and declares the linkage between a command, its events, and the handlers that are attached by this element.
Another typical way to populate the CommandBindings collection is to use CommandManager methods programmatically.
<object>
<object.CommandBindings>
oneOrMoreCommandBindings </object.CommandBindings>
</object>
- oneOrMoreCommandBindings
One or more CommandBinding elements. Each of these should have a Command attribute set to a known command, and attributes set for the CanExecute and Executed handler implementations. For more information see CommandBinding.
.NET Framework
Available since 3.0
Available since 3.0
Show: