SlideView 使 Windows Phone 8.1 应用程序崩溃
SlideView Crashes the Windows Phone 8.1 App
我正在写一个WindowsPhone8.1 App (WINRT)
我添加了 SlideView 库。向幻灯片视图添加了三个网格。它工作 很好而且很棒。
https://slideview.codeplex.com
现在问题出在导航。我在幻灯片视图中添加了一个按钮,每当我单击它以导航到应用程序的另一页时,它 崩溃 。
<controls:SlideView>
<Grid Background="Teal"
Width="400">
<Button Click="Button_Click">Goto all questions test </Button>
</Grid>
<Grid Background="Tomato" />
<Grid Background="LightYellow" />
<Grid Background="YellowGreen"
Width="400"/>
</controls:SlideView>
private void Button_Click(object sender, RoutedEventArgs e)
{
this.Frame.Navigate(typeof(MedicalUserQuestionAnswerFeedPage));
}
我尝试调试每一行,但 Visual studio 没有捕捉到异常。
试试这个:
Dispatcher.RunAsync(CoreDispatcherPriority.Normal, () => frame.Navigate(typeof(YourPage)));
我遇到了同样的问题,这解决了它。我还没有找到根本原因,但我打算调查一下,因为这很烦人
我正在写一个WindowsPhone8.1 App (WINRT)
我添加了 SlideView 库。向幻灯片视图添加了三个网格。它工作 很好而且很棒。 https://slideview.codeplex.com
现在问题出在导航。我在幻灯片视图中添加了一个按钮,每当我单击它以导航到应用程序的另一页时,它 崩溃 。
<controls:SlideView>
<Grid Background="Teal"
Width="400">
<Button Click="Button_Click">Goto all questions test </Button>
</Grid>
<Grid Background="Tomato" />
<Grid Background="LightYellow" />
<Grid Background="YellowGreen"
Width="400"/>
</controls:SlideView>
private void Button_Click(object sender, RoutedEventArgs e)
{
this.Frame.Navigate(typeof(MedicalUserQuestionAnswerFeedPage));
}
我尝试调试每一行,但 Visual studio 没有捕捉到异常。
试试这个:
Dispatcher.RunAsync(CoreDispatcherPriority.Normal, () => frame.Navigate(typeof(YourPage)));
我遇到了同样的问题,这解决了它。我还没有找到根本原因,但我打算调查一下,因为这很烦人