标签: c# xaml windows-phone-8
我正在为Windows手机开发UI;我编写了事件处理程序来在页面之间导航:
private void Settings_Click(object sender, RoutedEventArgs e) { this.Frame.Navigate(typeof(Settings)); }
尽管使用了相同的形式,它们在调试时都能正常运行,尽管使用了相同的形式:为指定按钮创建click方法并运行导航方法,将所需页面作为参数传递。