KeyBinding 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 KeyBinding 类的新实例。
重载
KeyBinding() |
初始化 KeyBinding 类的新实例。 |
KeyBinding(ICommand, KeyGesture) |
使用指定的 KeyBinding 和 ICommand 初始化 KeyGesture 类的新实例。 |
KeyBinding(ICommand, Key, ModifierKeys) |
使用指定的 KeyBinding 以及将要转换为 ICommand 的指定的 Key 和 ModifierKeys 初始化 KeyGesture 类的新实例。 |
KeyBinding()
初始化 KeyBinding 类的新实例。
public:
KeyBinding();
public KeyBinding ();
Public Sub New ()
另请参阅
- KeyBinding
- MouseBinding
- RoutedCommand
- CommandBinding
- KeyGesture
- MouseGesture
- InputGesture
- InputBinding
适用于
KeyBinding(ICommand, KeyGesture)
使用指定的 KeyBinding 和 ICommand 初始化 KeyGesture 类的新实例。
public:
KeyBinding(System::Windows::Input::ICommand ^ command, System::Windows::Input::KeyGesture ^ gesture);
public KeyBinding (System.Windows.Input.ICommand command, System.Windows.Input.KeyGesture gesture);
new System.Windows.Input.KeyBinding : System.Windows.Input.ICommand * System.Windows.Input.KeyGesture -> System.Windows.Input.KeyBinding
Public Sub New (command As ICommand, gesture As KeyGesture)
参数
- command
- ICommand
要与 gesture
关联的命令。
- gesture
- KeyGesture
要与 command
关联的键组合。
例外
command
或 gesture
为 null
。
另请参阅
- KeyBinding
- MouseBinding
- RoutedCommand
- CommandBinding
- KeyGesture
- MouseGesture
- InputGesture
- InputBinding
适用于
KeyBinding(ICommand, Key, ModifierKeys)
使用指定的 KeyBinding 以及将要转换为 ICommand 的指定的 Key 和 ModifierKeys 初始化 KeyGesture 类的新实例。
public:
KeyBinding(System::Windows::Input::ICommand ^ command, System::Windows::Input::Key key, System::Windows::Input::ModifierKeys modifiers);
public KeyBinding (System.Windows.Input.ICommand command, System.Windows.Input.Key key, System.Windows.Input.ModifierKeys modifiers);
new System.Windows.Input.KeyBinding : System.Windows.Input.ICommand * System.Windows.Input.Key * System.Windows.Input.ModifierKeys -> System.Windows.Input.KeyBinding
Public Sub New (command As ICommand, key As Key, modifiers As ModifierKeys)
参数
- command
- ICommand
要调用的命令。
- key
- Key
要与 command
关联的键。
- modifiers
- ModifierKeys
要与 command
关联的修饰符。
另请参阅
- KeyBinding
- MouseBinding
- RoutedCommand
- CommandBinding
- KeyGesture
- MouseGesture
- InputGesture
- InputBinding