Skip to main content

DocumentPanel.EnableMouseHoverWhenInactive Property

Gets or sets whether the current DocumentPanel handles its child controls’ events in the inactive state. This is a dependency property.

Namespace: DevExpress.Xpf.Docking

Assembly: DevExpress.Xpf.Docking.v23.2.dll

NuGet Package: DevExpress.Wpf.Docking

Declaration

public bool EnableMouseHoverWhenInactive { get; set; }

Property Value

Type Description
Boolean

true if the current DocumentPanel handles its child controls’ events in the inactive state; otherwise, false. The default is false.

Remarks

By default, a DocumentPanel does not handle any of its child controls’ events when the panel is inactive. For instance, if you click a button contained within an inactive panel, the panel is activated but the ButtonClick event will not occur. Set the EnableMouseHoverWhenInactive property to true to change this behavior.

See Also