MouseGesture.Matches(Object, InputEventArgs) メソッド

定義

指定した MouseGesture オブジェクトに関連付けられた入力に、InputEventArgs が一致するかどうかを判断します。

public:
 override bool Matches(System::Object ^ targetElement, System::Windows::Input::InputEventArgs ^ inputEventArgs);
public override bool Matches (object targetElement, System.Windows.Input.InputEventArgs inputEventArgs);
override this.Matches : obj * System.Windows.Input.InputEventArgs -> bool
Public Overrides Function Matches (targetElement As Object, inputEventArgs As InputEventArgs) As Boolean

パラメーター

targetElement
Object

ターゲット。

inputEventArgs
InputEventArgs

このジェスチャの比較対象となる入力イベント データ。

戻り値

イベント データがこの MouseGesture に一致する場合は true。それ以外の場合は false

次の例では、 が のインスタンスに関連付けられている入力と一致するかどうかを MouseGesture テストする方法を InputEventArgs示します。 イベント ハンドラーはMouseDown、 メソッドを使用Matchesしてイベント データを とMouseGesture比較します。

private void OnMouseDown(object sender, MouseEventArgs e)
{
    MouseGesture mouseGesture = new MouseGesture(MouseAction.MiddleClick,ModifierKeys.Control);

    if (mouseGesture.Matches(null, e))
    {
        MessageBox.Show("Trapped Mouse Gesture");
    }
}
Private Overloads Sub OnMouseDown(ByVal sender As Object, ByVal e As MouseEventArgs)
    Dim mouseGesture As New MouseGesture(MouseAction.MiddleClick,ModifierKeys.Control)

    If mouseGesture.Matches(Nothing, e) Then
        MessageBox.Show("Trapped Mouse Gesture")
    End If
End Sub

適用対象