如何从班级对象中获取页面指针?
所以,我有这段代码:
<controls:PivotItem Header="Today">
<Grid>
<ScrollViewer Height="520" VerticalAlignment="Top">
<local:Fixtures Adress="..." Clubs="..."/>
</ScrollViewer>
</Grid>
</controls:PivotItem>
我需要在我的类Fixtures中的异常处理程序中创建NavigationService.GoBack()。
我该怎么做?
答案 0 :(得分:3)
(App.Current as App).RootFrame.GoBack()