NavigationCommands.BrowseForward Proprietà

Definizione

Ottiene il valore che rappresenta il Browse Forward comando.

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

Valore della proprietà

Comando indirizzato dell'interfaccia utente.

Valori predefiniti
Movimento della chiave ALT+DESTRA
Testo dell'interfaccia utente Avanti

Esempio

Nell'esempio seguente viene illustrato come usare BrowseForward insieme a un oggetto Frame. Frame fornisce un'implementazione che risponde al BrowseForward comando spostandosi in Frame avanti, se sono presenti voci di journal nello stack di inoltro.

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

Commenti

Questo comando indica l'intenzione di spostarsi avanti nella pagina successiva nel journal.

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

Utilizzo degli attributi XAML

<object property="NavigationCommands.BrowseForward"/>

Si applica a

Vedi anche