在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切换页面,所有教程都使用该方法,但我不能。为什么?