Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

NavigationCommands.BrowseForward Property

Definition

Namespace:
System.Windows.Input
Assembly:
PresentationCore.dll

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Gets the value that represents the Browse Forward command.

public:
 static property System::Windows::Input::RoutedUICommand ^ BrowseForward { System::Windows::Input::RoutedUICommand ^ get(); };
public static System.Windows.Input.RoutedUICommand BrowseForward { get; }
static member BrowseForward : System.Windows.Input.RoutedUICommand
Public Shared ReadOnly Property BrowseForward As RoutedUICommand

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.

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

See also


Feedback

Was this page helpful?