RoutedCommand.InputGestures プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
このコマンドに関連付けられている InputGesture オブジェクトのコレクションを取得します。
public:
property System::Windows::Input::InputGestureCollection ^ InputGestures { System::Windows::Input::InputGestureCollection ^ get(); };
public System.Windows.Input.InputGestureCollection InputGestures { get; }
member this.InputGestures : System.Windows.Input.InputGestureCollection
Public ReadOnly Property InputGestures As InputGestureCollection
プロパティ値
入力ジェスチャ。
例
次の例は、 に新 MouseGesture しい を追加する方法を RoutedCommand示しています。
MouseGesture PasteCmdMouseGesture = new MouseGesture(
MouseAction.MiddleClick, ModifierKeys.Alt);
ApplicationCommands.Paste.InputGestures.Add(PasteCmdMouseGesture);
Dim PasteCmdMouseGesture As New MouseGesture(MouseAction.MiddleClick, ModifierKeys.Alt)
ApplicationCommands.Paste.InputGestures.Add(PasteCmdMouseGesture)
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET