UIElement.InputBindings プロパティ

定義

この要素に関連付けられている入力バインドのコレクションを取得します。

public:
 property System::Windows::Input::InputBindingCollection ^ InputBindings { System::Windows::Input::InputBindingCollection ^ get(); };
public System.Windows.Input.InputBindingCollection InputBindings { get; }
member this.InputBindings : System.Windows.Input.InputBindingCollection
Public ReadOnly Property InputBindings As InputBindingCollection

プロパティ値

InputBindingCollection

入力バインディングのコレクション。

次の例では、このプロパティに 1 つのKeyBinding値をWindow設定します。

<Window.InputBindings>
  <KeyBinding Key="B"
              Modifiers="Control" 
              Command="ApplicationCommands.Open" />
</Window.InputBindings>

コレクションの XAML 構文の詳細については、「 XAML 構文の詳細」を参照してください

注釈

入力バインドは、入力デバイスへのコマンドのバインドをサポートします。 たとえば、 MouseBinding マウス デバイスに特有のプロパティを含む入力バインドを実装します。

入力バインドのコレクションには、型に関連する入力バインドと、インスタンスで宣言されている入力バインドの両方が含まれます。

関連プロパティは、 CommandBindingsコマンド バインドのコレクションを保持します。 これらは、コマンド処理の次のレベル (既知のコマンドに関連付けられているアクション) を表すという点で、入力バインドとは異なります。

XAML プロパティ要素の使用

<object>  
  <object.InputBindings>  
    oneOrMoreInputBindings  
  </object.InputBindings>  
</object>  

XAML 値

oneOrMoreInputBindings
1 つ以上のInputBinding要素 (通常はKeyBinding派生クラス)。MouseBinding これらのそれぞれには、and Gesture 属性がCommand設定されている必要があります。

適用対象

こちらもご覧ください