NavigationCommands.Refresh 属性

定义

获取表示 Refresh 命令的值。

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

属性值

路由的 UI 命令。

默认值
键笔势 F5
UI 文本 刷新

示例

以下示例演示如何 RefreshFrame结合使用。 Frame提供一个实现,该实现通过重新加载当前Frame内容来Refresh响应 命令。

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

注解

此命令指示刷新当前页面的意图。

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

XAML 属性用法

<object property="NavigationCommands.Refresh"/>  

适用于

另请参阅