Condividi tramite


NavigationCommands.Refresh Proprietà

Definizione

Ottiene il valore che rappresenta il comando 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

Valore della proprietà

Comando dell'interfaccia utente indirizzata.

Valori predefiniti
Combinazione di tasti F5
Testo interfaccia utente Aggiorna

Esempio

Nell'esempio seguente viene illustrato come usare Refresh in combinazione con un Frameoggetto . Fornisce Frame un'implementazione che risponde al Refresh comando ricaricando il contenuto corrente Frame .

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

Commenti

Questo comando indica l'intenzione di aggiornare la pagina corrente.

Frame e NavigationWindow implementare il supporto per rispondere al Refresh comando, anche se non è necessario usarlo. In molti casi l'implementazione in risposta a tale comando è la responsabilità del writer dell'applicazione.

Uso della sintassi XAML per gli attributi

<object property="NavigationCommands.Refresh"/>  

Si applica a

Vedi anche