Skip to main content

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

AppBar.IsBackButtonEnabled Property

Gets or sets whether the Back button is displayed within the AppBar.

Namespace: DevExpress.Xpf.WindowsUI

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

NuGet Package: DevExpress.Wpf.Controls

#Declaration

public bool IsBackButtonEnabled { get; set; }

#Property Value

Type Description
Boolean

true, if the Back button is displayed; otherwise, false. The default value is false.

#Remarks

In multi-screen applications, if you use the NavigationFrame to implement navigation between screens, you can display the Back button within the app bar. The Back button returns an end-user to the previous page of the application. To enable the Back button, set the IsBackButtonEnabled property to true. If it is possible to return to the previous page, the Back button is displayed at the leftmost position on the app bar; otherwise, the Back button is hidden. See the Navigation topic to learn more.

You can also use a custom command as the Back button’s command. To do this, use the AppBar.BackCommand property.

See Also