NavigationCommands.BrowseStop Property

Definition

Gets the value that represents the Browse Stop command.

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

Property Value

The routed UI command.

Default Values
Key Gesture ALT+ESC
UI Text Stop

Examples

The following example shows how to use BrowseStop in conjunction with a Frame. The Frame provides an implementation that responds to the BrowseStop command by stopping the current Frame navigation.

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

Remarks

This command indicates the intention to stop the browser loading.

Frame and NavigationWindow implement support for responding to the BrowseStop 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.BrowseStop"/>  

Applies to

See also