NavigationCommands.BrowseForward Proprietà

Definizione

Ottiene il valore che rappresenta il comando Browse Forward.

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
Combinazione di tasti ALT+freccia DESTRA
Testo interfaccia utente Avanti

Esempio

Nell'esempio seguente viene illustrato come usare BrowseForward in combinazione con un oggetto Frame. fornisce Frame un'implementazione che risponde al BrowseForward comando spostandosi verso l'avanti Frame , se sono presenti voci journal nello stack forward.

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

Uso della sintassi XAML per gli attributi

<object property="NavigationCommands.BrowseForward"/>  

Si applica a

Vedi anche