0

NavigationService.Navigate Method (Uri)的文档中是这个代码片段:

void goButton_Click(object sender, RoutedEventArgs e)
{
    this.NavigationService.Navigate(new Uri(this.addressTextBox.Text));
}

但是在我想调用它的班级中this.NavigationService不可用。Window基本上我想使用MVVM-Light Toolkit切换页面,所有教程都使用该方法,但我不能。为什么?

4

1 回答 1

1

您需要使用 aNavigationWindow来使用NavigationService

于 2013-02-18T22:11:56.350 回答