HandledMouseEventArgs.Handled プロパティ

定義

このイベントをコントロールの親コンテナーに送るかどうかを取得または設定します。

public:
 property bool Handled { bool get(); void set(bool value); };
public bool Handled { get; set; }
member this.Handled : bool with get, set
Public Property Handled As Boolean

プロパティ値

Boolean

マウス イベントを親コントロールに渡す場合は true。それ以外の場合は false

次のコード例は、マウス ホイール イベントをカスタム コントロールで処理済みとしてマークする方法を示しています。

Public Class MouseWheelControl
    Sub New()
        ' Add initialization code for the control here. 
    End Sub

    Protected Sub MouseWheelControl_MouseWheel(ByVal sender As Object, ByVal e As MouseEventArgs) Handles Me.MouseWheel
        Dim Hme As HandledMouseEventArgs = e
        Hme.Handled = True
        ' Perform custom mouse wheel action here. 
    End Sub
End Class

適用対象