Behavior.OnMouseLeave(Glyph) Method

Definition

Called when any mouse-leave message enters the adorner window of the BehaviorService.

public:
 virtual bool OnMouseLeave(System::Windows::Forms::Design::Behavior::Glyph ^ g);
public virtual bool OnMouseLeave (System.Windows.Forms.Design.Behavior.Glyph g);
public virtual bool OnMouseLeave (System.Windows.Forms.Design.Behavior.Glyph? g);
abstract member OnMouseLeave : System.Windows.Forms.Design.Behavior.Glyph -> bool
override this.OnMouseLeave : System.Windows.Forms.Design.Behavior.Glyph -> bool
Public Overridable Function OnMouseLeave (g As Glyph) As Boolean

Parameters

g
Glyph

A Glyph.

Returns

true if the message was handled; otherwise, false.

Remarks

The OnMouseDoubleClick method is called when any mouse-leave message enters the WndProc of the adorner window of the BehaviorService. From here, the message is sent to the appropriate behavior.

When the mouse pointer leaves a positively hit-tested Glyph with a valid Behavior, this method is invoked.

Applies to

See also