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 テキスト 更新

次の例は、 と組み合わせて を使用 Refresh する方法を Frame示しています。 は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>

注釈

このコマンドは、現在のページを更新する意図を示します。

Frame コマンド NavigationWindow に応答するためのサポートを Refresh 実装しますが、使用する必要はありません。多くの場合、そのコマンドに応答する実装はアプリケーション ライターの責任です。

XAML 属性の使用方法

<object property="NavigationCommands.Refresh"/>  

適用対象

こちらもご覧ください