NavigationCommands.Refresh Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the value that represents the Refresh
command.
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
Property Value
The routed UI command.
Default Values | |
---|---|
Key Gesture | F5 |
UI Text | Refresh |
Examples
The following example shows how to use Refresh in conjunction with a Frame. The Frame provides an implementation that responds to the Refresh command by reloading the current Frame content.
<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>
Remarks
This command indicates the intention to refresh the current page.
Frame and NavigationWindow implement support for responding to the Refresh 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.Refresh"/>