First I call the child page(User Control) from parent page(Xaml).. then I have to redirect or loading the parent page from child page.
RootFrame.Navigate(new Uri("/Views/pages/page1.xaml", UriKind.Relative));
I used this code for navigating from User control to XAML page. But this is not applicable for user Control page. So I referred the below one that is working for the first time but second time it will not navigate to the xaml(parent) page.
var frame = App.Current.RootVisual as PhoneApplicationFrame; frame.Navigate(new Uri("/Views/pages/page1.xaml", UriKind.Relative));
http://www.c-sharpcorner.com/UploadFile/dhananjaycoder/how-to-navigate-to-other-page-from-a-user-control-in-windows/ I tried this link also But can't get the result..
So please anyone give the solution ...
NavigationService.Navigate(new Uri("/Views/pages/page1.xaml", UriKind.Relative));
? – hmnzrpage1.xaml
? – user2579857