我有自己的堆栈/导航模型,但我希望标准的后退按钮出现在我的页面标题旁边。
我需要什么代码才能让它出现?
这些例子只是做这样的事情:
void Header_Click(object sender, RoutedEventArgs e)
{
// Determine what group the Button instance represents
var group = (sender as FrameworkElement).DataContext;
// Navigate to the appropriate destination page, configuring the new page
// by passing required information as a navigation parameter
this.Frame.Navigate(typeof(GroupDetailPage),
((SampleDataGroup)group).UniqueId);
}
它会自动出现。
我浏览了各种 msdn 页面,但他们大多谈论设计模式。
谢谢