Bagikan melalui


NavigationCommands.BrowseForward Properti

Definisi

Mendapatkan nilai yang mewakili Browse Forward perintah .

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

Nilai Properti

Perintah UI yang dirutekan.

Nilai Default
Gerakan Kunci ALT+RIGHT
Teks UI Maju

Contoh

Contoh berikut menunjukkan cara menggunakan BrowseForward bersama dengan Frame. Frame menyediakan implementasi yang merespons BrowseForward perintah dengan menavigasi ke Frame depan, jika ada entri jurnal pada tumpukan maju.

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

Keterangan

Perintah ini menunjukkan niat untuk menavigasi ke depan halaman berikutnya dalam jurnal.

Frame dan NavigationWindow menerapkan dukungan untuk menanggapi BrowseForward perintah, meskipun Anda tidak diharuskan untuk menggunakannya; dalam banyak kasus implementasi sebagai respons terhadap perintah itu adalah tanggung jawab penulis aplikasi.

Penggunaan Atribut XAML

<object property="NavigationCommands.BrowseForward"/>  

Berlaku untuk

Lihat juga