KeyBinding コンストラクター

定義

KeyBinding クラスの新しいインスタンスを初期化します。

オーバーロード

KeyBinding()

KeyBinding クラスの新しいインスタンスを初期化します。

KeyBinding(ICommand, KeyGesture)

指定した KeyBindingICommand を使用して、KeyGesture クラスの新しいインスタンスを初期化します。

KeyBinding(ICommand, Key, ModifierKeys)

指定した KeyBinding と指定した ICommand および Key に変換される ModifierKeys を使用して、KeyGesture クラスの新しいインスタンスを初期化します。

KeyBinding()

KeyBinding クラスの新しいインスタンスを初期化します。

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

こちらもご覧ください

適用対象

KeyBinding(ICommand, KeyGesture)

指定した KeyBindingICommand を使用して、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 または gesturenull です。

こちらもご覧ください

適用対象

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 に関連付ける変換キー。

こちらもご覧ください

適用対象