ButtonBase.OnMouseLeave(MouseEventArgs) Method

Definition

Provides class handling for the MouseLeave routed event that occurs when the mouse leaves an element.

protected:
 override void OnMouseLeave(System::Windows::Input::MouseEventArgs ^ e);
protected override void OnMouseLeave (System.Windows.Input.MouseEventArgs e);
override this.OnMouseLeave : System.Windows.Input.MouseEventArgs -> unit
Protected Overrides Sub OnMouseLeave (e As MouseEventArgs)

Parameters

e
MouseEventArgs

The event data for the MouseLeave event.

Remarks

This implementation marks the MouseLeave event as handled by setting the Handled property of the event data to true when ClickMode is set to Hover.

Notes to Inheritors

If you override OnMouseLeave(MouseEventArgs), always call the base implementation in your OnMouseLeave(MouseEventArgs) implementation. Failure to call the base implementation prevents base classes from handling the event with a class handler, which might change the run-time behavior of the final class. You can call the base implementation either before or after your special handling, depending on your requirements.

Applies to