UIElement3D.CommandBindings Property

Definition

Gets a collection of CommandBinding objects associated with this element.

C#
public System.Windows.Input.CommandBindingCollection CommandBindings { get; }

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.

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

Produk Versi
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

See also