Skip to main content
All docs
V23.2

DxHtmlPainterContext.OnMouseLeave(EventArgs, Object) Method

Transfers the MouseLeave mouse event to the target HTML element. This allows the element to change its visual state from “hovered” to “normal”.

Namespace: DevExpress.Utils.Html

Assembly: DevExpress.Utils.v23.2.dll

NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core

Declaration

public void OnMouseLeave(
    EventArgs e,
    object interactivityKey = null
)

Parameters

Name Type Description
e EventArgs

The EventArgs object utilized by the origin MouseLeave event (the MouseLeave event of the parent control).

Optional Parameters

Name Type Default Description
interactivityKey Object null

The ID that allows you to identify the specific instance of a custom-drawn template.

Remarks

See this article to learn more about transmitting mouse events from parent controls to HTML template instances: Custom Draw Templates.

See Also