I am writing a Windows Phone 8.1 App (WINRT)
I added SlideView Library to it. Added three grids to slideview. It works fine and awsome. https://slideview.codeplex.com
Now the problem lies in navigation. I added a buton in slideview and Whenever I click on it to navigate to another page of app, it crashes.
<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));
}
I tried to debug every line but Visual studio is not catching the exception.