NavigationCommands.BrowseBack Property
Gets the value that represents the Browse Back command.
Namespace: System.Windows.Input
Assembly: PresentationCore (in PresentationCore.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/2006/xaml/presentation, http://schemas.microsoft.com/netfx/2007/xaml/presentation
<object property="NavigationCommands.BrowseBack"/>
Property Value
Type: System.Windows.Input.RoutedUICommandThe routed UI command.
Default Values | |
|---|---|
Key Gesture | ALT+LEFT |
UI Text | Back |
This command indicates the intention to navigate back to the previous page in the journal.
Frame and NavigationWindow implement support for responding to the BrowseBack, although you are not required to use it; in many cases the implementation in response to that command is the responsibility of the application writer.
The following example shows how to use BrowseBack in conjunction with a Frame. The Frame provides an implementation that responds to the BrowseBack command by navigating the Frame back, if there are journal entries on the back stack.
<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"> ... <!-- NavigationCommands.BrowseBack --> <MenuItem Command="NavigationCommands.BrowseBack" CommandTarget="{Binding ElementName=frame}" /> ... <!-- The following Frame is used to process NavigationCommands.BrowseBack commands --> <Frame Name="frame" NavigationUIVisibility="Hidden" Source="Page1.xaml" /> ... </Window>
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.