CommandBindingCollection Constructors

Definition

Initializes a new instance of the CommandBindingCollection class.

Overloads

CommandBindingCollection()

Initializes a new instance of the CommandBindingCollection class.

CommandBindingCollection(IList)

Initializes a new instance of the CommandBindingCollection class using the items in the specified IList.

Remarks

Commanding Overview

RoutedCommand

ICommand

CommandBindingCollection()

Initializes a new instance of the CommandBindingCollection class.

public:
 CommandBindingCollection();
public CommandBindingCollection ();
Public Sub New ()

See also

Applies to

CommandBindingCollection(IList)

Initializes a new instance of the CommandBindingCollection class using the items in the specified IList.

public:
 CommandBindingCollection(System::Collections::IList ^ commandBindings);
public CommandBindingCollection (System.Collections.IList commandBindings);
new System.Windows.Input.CommandBindingCollection : System.Collections.IList -> System.Windows.Input.CommandBindingCollection
Public Sub New (commandBindings As IList)

Parameters

commandBindings
IList

The collection whose items are copied to the new CommandBindingCollection.

See also

Applies to