Skip to main content

AppBar.IsBackButtonEnabled Property

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

Namespace: DevExpress.Xpf.WindowsUI

Assembly: DevExpress.Xpf.Controls.v23.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