UIElement3D.CommandBindings Property

Definition

Gets a collection of CommandBinding objects associated with this element.

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

Property Value

The collection of all CommandBinding objects.

Remarks

A CommandBinding enables command handling of a specific command for this element, and declares the linkage between a command, its events, and the handlers attached by this element.

Another typical way to populate the CommandBindings collection is to use CommandManager methods programmatically.

CommandBindings is introduced in the .NET Framework version 3.5. For more information, see Versions and Dependencies.

XAML Property Element Usage

<object>  
  <object.CommandBindings>  
    oneOrMoreCommandBindings  </object.CommandBindings>  
</object>  

XAML Values

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.

Applies to

See also