Skip to main content
All docs
V24.2

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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.v24.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