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

DxDrawer.IsOpenChanged Event

Fires when the drawer panel opens or closes.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

#Declaration

C#
[Parameter]
public EventCallback<bool> IsOpenChanged { get; set; }

#Parameters

Type Description
Boolean

A new value of the IsOpen property.

#Remarks

The IsOpenChanged event occurs when the IsOpen property value is changed. For instance, it fires when the Mode property is set to Overlap, the CloseOnTargetContentClick property is set to true (the default value), and a user clicks on a content area. Handle the IsOpenChanged event to react to this action.

See Also