NavigationService.GoForward 方法

定义

导航到前进导航历史记录中的最新条目(如果有)。

public:
 void GoForward();
public void GoForward ();
member this.GoForward : unit -> unit
Public Sub GoForward ()

例外

如果前进导航历史记录中没有任何条目,则调用 GoForward()

示例

以下示例导航到前向导航历史记录中的最新条目(如果存在)。

void forwardButton_Click(object sender, RoutedEventArgs e)
{
    if (this.NavigationService.CanGoForward)
    {
        this.NavigationService.GoForward();
    }
}
Private Sub forwardButton_Click(ByVal sender As Object, ByVal e As RoutedEventArgs)
    If Me.NavigationService.CanGoForward Then
        Me.NavigationService.GoForward()
    End If
End Sub

注解

在调用 GoForward之前, CanGoForward 可以检查该属性,以确定前向导航历史记录中是否存在条目。

适用于

另请参阅