我重新启动了一个页面,Game.xaml 使用
NavigationService.Navigate(new Uri(string.Format("/Game.xaml?random={0}", Guid.NewGuid()), UriKind.Relative));
但是,现在,我必须重新启动页面取决于我之前选择的页面的值。为了获得我之前选择的页面的值,我使用了
int selectedLevel = Convert.ToInt32(NavigationService.GetLastNavigationData());
Game.xaml 将根据我选择的页面的值显示数据。但是,如果我现在重新启动页面,则不会显示任何数据。有谁知道我该怎么做?