How do I use the NavigationWindow.Navigate method?

508 Views Asked by At

I have a NavigationWindow and a folder called Views. In that folder is a user control called Home.

How do I navigate to that page?

1

There are 1 best solutions below

0
On
myNavigationWindow.Navigate(new Uri("/Views/Home.xaml", UriKind.Relative));