CommandBinding 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 CommandBinding 類別的新執行個體。
多載
CommandBinding() |
初始化 CommandBinding 類別的新執行個體。 |
CommandBinding(ICommand) |
使用指定的 CommandBinding 來初始化 ICommand 類別的新執行個體。 |
CommandBinding(ICommand, ExecutedRoutedEventHandler) |
使用指定的 CommandBinding 和指定的 ICommand 事件處理常式,初始化 Executed 類別的新執行個體。 |
CommandBinding(ICommand, ExecutedRoutedEventHandler, CanExecuteRoutedEventHandler) |
使用指定的 CommandBinding,和指定的 ICommand 與 Executed 事件處理常式,初始化 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,和指定的 ICommand 與 Executed 事件處理常式,初始化 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 事件的處理常式。