CommandBinding 构造函数

定义

初始化 CommandBinding 类的新实例。

重载

CommandBinding()

初始化 CommandBinding 类的新实例。

CommandBinding(ICommand)

使用指定的 CommandBinding 初始化 ICommand 类的新实例。

CommandBinding(ICommand, ExecutedRoutedEventHandler)

使用指定的 CommandBinding 和指定的 ICommand 事件处理程序初始化 Executed 类的新实例。

CommandBinding(ICommand, ExecutedRoutedEventHandler, CanExecuteRoutedEventHandler)

使用指定的 CommandBinding 和指定的 ICommandExecuted 事件处理程序初始化 CanExecute 类的新实例。

CommandBinding()

初始化 CommandBinding 类的新实例。

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

另请参阅

适用于

CommandBinding(ICommand)

使用指定的 CommandBinding 初始化 ICommand 类的新实例。

public:
 CommandBinding(System::Windows::Input::ICommand ^ command);
public CommandBinding (System.Windows.Input.ICommand command);
new System.Windows.Input.CommandBinding : System.Windows.Input.ICommand -> System.Windows.Input.CommandBinding
Public Sub New (command As ICommand)

参数

command
ICommand

新的 RoutedCommand 所基于的命令。

适用于

CommandBinding(ICommand, ExecutedRoutedEventHandler)

使用指定的 CommandBinding 和指定的 ICommand 事件处理程序初始化 Executed 类的新实例。

public:
 CommandBinding(System::Windows::Input::ICommand ^ command, System::Windows::Input::ExecutedRoutedEventHandler ^ executed);
public CommandBinding (System.Windows.Input.ICommand command, System.Windows.Input.ExecutedRoutedEventHandler executed);
new System.Windows.Input.CommandBinding : System.Windows.Input.ICommand * System.Windows.Input.ExecutedRoutedEventHandler -> System.Windows.Input.CommandBinding
Public Sub New (command As ICommand, executed As ExecutedRoutedEventHandler)

参数

command
ICommand

新的 RoutedCommand 所基于的命令。

executed
ExecutedRoutedEventHandler

Executed 上的 RoutedCommand 事件的处理程序。

适用于

CommandBinding(ICommand, ExecutedRoutedEventHandler, CanExecuteRoutedEventHandler)

使用指定的 CommandBinding 和指定的 ICommandExecuted 事件处理程序初始化 CanExecute 类的新实例。

public:
 CommandBinding(System::Windows::Input::ICommand ^ command, System::Windows::Input::ExecutedRoutedEventHandler ^ executed, System::Windows::Input::CanExecuteRoutedEventHandler ^ canExecute);
public CommandBinding (System.Windows.Input.ICommand command, System.Windows.Input.ExecutedRoutedEventHandler executed, System.Windows.Input.CanExecuteRoutedEventHandler canExecute);
new System.Windows.Input.CommandBinding : System.Windows.Input.ICommand * System.Windows.Input.ExecutedRoutedEventHandler * System.Windows.Input.CanExecuteRoutedEventHandler -> System.Windows.Input.CommandBinding
Public Sub New (command As ICommand, executed As ExecutedRoutedEventHandler, canExecute As CanExecuteRoutedEventHandler)

参数

command
ICommand

新的 RoutedCommand 所基于的命令。

executed
ExecutedRoutedEventHandler

Executed 上的 RoutedCommand 事件的处理程序。

canExecute
CanExecuteRoutedEventHandler

CanExecute 上的 RoutedCommand 事件的处理程序。

适用于