SlideView崩溃Windows Phone 8.1应用程序

时间:2015-03-06 13:32:07

标签: c# visual-studio-2013 windows-runtime windows-phone windows-phone-8.1

我正在编写 Windows Phone 8.1应用程序(WINRT)

我添加了 SlideView库。为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没有捕获异常。

1 个答案:

答案 0 :(得分:1)

试试这个:

Dispatcher.RunAsync(CoreDispatcherPriority.Normal, () => frame.Navigate(typeof(YourPage)));

我遇到了同样的问题并修复了它。我还没有找到根本原因,但我打算调查,因为这很烦人