Прочетете на английски Редактиране

Споделяне чрез


NavigationCommands.BrowseStop Property

Definition

Gets the value that represents the Browse Stop command.

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

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.

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

Продукт Версии
.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