NavigationCommands.BrowseForward Property

Definition

Gets the value that represents the Browse Forward command.

C#
public static System.Windows.Input.RoutedUICommand BrowseForward { get; }

Property Value

The routed UI command.

Default Values
Key Gesture ALT+RIGHT
UI Text Forward

Examples

The following example shows how to use BrowseForward in conjunction with a Frame. The Frame provides an implementation that responds to the BrowseForward command by navigating the Frame forward, if there are journal entries on the forward stack.

XAML
<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
XAML
<!-- NavigationCommands.BrowseForward -->
<MenuItem
  Command="NavigationCommands.BrowseForward"
  CommandTarget="{Binding ElementName=frame}" />
XAML
<!-- The following Frame is used to process NavigationCommands.BrowseForward commands -->
<Frame Name="frame" NavigationUIVisibility="Hidden" Source="Page1.xaml" />
XAML
</Window>

Remarks

This command indicates the intention to navigate forward the next page in the journal.

Frame and NavigationWindow implement support for responding to the BrowseForward command, 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.

XAML Attribute Usage

<object property="NavigationCommands.BrowseForward"/>  

Applies to

Product Versions
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

See also