0

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?

H.B.
  • 166,899
  • 29
  • 327
  • 400
Jonathan Allen
  • 68,373
  • 70
  • 259
  • 447

1 Answers1

0
myNavigationWindow.Navigate(new Uri("/Views/Home.xaml", UriKind.Relative));
Jonathan Allen
  • 68,373
  • 70
  • 259
  • 447