NavigationCommands.BrowseStop 属性

定义

获取表示 Browse Stop 命令的值。

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

属性值

路由的 UI 命令。

默认值
键笔势 Alt + Esc
UI 文本 停止

示例

以下示例演示如何 BrowseStop 将 与 Frame结合使用。 Frame提供了一个实现,该实现通过停止当前Frame导航来BrowseStop响应 命令。

<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>

注解

此命令指示停止浏览器加载的意图。

FrameNavigationWindow 实现对命令响应 BrowseStop 的支持,尽管不需要使用它;在许多情况下,响应该命令的实现由应用程序编写者负责。

XAML 属性用法

<object property="NavigationCommands.BrowseStop"/>  

适用于

另请参阅