UIElement.IsMouseCaptured プロパティ

定義

この要素にマウスがキャプチャされるかどうかを示す値を取得します。 これは依存関係プロパティです。

public:
 property bool IsMouseCaptured { bool get(); };
public bool IsMouseCaptured { get; }
member this.IsMouseCaptured : bool
Public ReadOnly Property IsMouseCaptured As Boolean

プロパティ値

Boolean

要素にマウス キャプチャがある場合は true。それ以外の場合は false。 既定値は、false です。

実装

次の例では、要素に対してマウスが既にキャプチャされているかどうかに基づいて、マウス キャプチャ状態のオンとオフを切り替えます。

マウス キャプチャが他の場所にある場合、マウス キャプチャはその要素に設定されます。 要素にマウス キャプチャがある場合は、null 入力を使用して呼び出 Mouse.Capture すことでクリアされます。

    private void CaptureMouseCommandExecuted(object sender, ExecutedRoutedEventArgs e)
    {
        MessageBox.Show("Mouse Command");
        IInputElement target = Mouse.DirectlyOver;

        target = target as Control;
        if (target != null)
        {
            if (!target.IsMouseCaptured)
            {
                Mouse.Capture(target);
            }
            else
            {
                Mouse.Capture(null);
            }
        }
    }
Private Sub CaptureMouseCommandExecuted(ByVal sender As Object, ByVal e As ExecutedRoutedEventArgs)
    MessageBox.Show("Mouse Command")
    Dim target As IInputElement = Mouse.DirectlyOver

    target = TryCast(target, Control)
    If target IsNot Nothing Then
        If Not target.IsMouseCaptured Then
            Mouse.Capture(target)
        Else
            Mouse.Capture(Nothing)
        End If
    End If
End Sub

注釈

マウス キャプチャの状態は、処理中のドラッグ アンド ドロップ操作に関連します。

依存プロパティ情報

識別子フィールド IsMouseCapturedProperty
メタデータのプロパティが次に設定されている true なし

適用対象

こちらもご覧ください