I want to Navigate to a page in the NavigationStack without re-creating a new instance or modifying NavigationStack.
Is this possible?
For Example:
NavigationStack:
Page1.xaml
Page2.xaml
Page3.xaml
Now assume I am on Page1.xaml, and want to navigate to Page3.xaml again. If i run
NavigationService.Navigate(new Uri("/Page3.xaml", UriKind.Relative)); it creates another Page1 object and navigates to that one, but i want to use the existing page object again.
Thanks