Skip to main content

AppBar.Opened Event

Occurs when the AppBar changes from hidden to visible.

Namespace: DevExpress.Xpf.WindowsUI

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

NuGet Package: DevExpress.Wpf.Controls

Declaration

public event EventHandler Opened

Event Data

The Opened event's data class is EventArgs.

Remarks

You can respond to the AppBar being opened by handling the Opened event. This event occurs after the AppBar has been opened by an end-user at runtime, or in code using the AppBar.IsOpen property. Note that this event provides only a notification, and it is not possible to cancel the action. To cancel the action, handle the AppBar.Opening event.

You can also respond to the AppBar being closed by handling the AppBar.Closed event.

See Also