Click here to Skip to main content
15,867,939 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi guys,
I just want to navigate the one page to another page in universal app, using uri(name of the ui(ex:"Views.Inventory.ItemListPage").url="Views.Inventory.ItemListPage";
like this NavigationService.Navigate(new Uri(url, UriKind.Relative)
any one can help me on this.Thanks in advance

What I have tried:

i tried this but result negative
NavigationService.Navigate(new Uri(url, UriKind.Relative)
Posted
Updated 26-Jul-16 9:05am

1 solution

In UWP its little different. Try below.

C#
this.Frame.Navigate(typeof(Views.Inventory.ItemListPage));
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900