I am currently using Modern UI from CodePlex. It is great and easy to use but there are some classes and events that I am not familiar with. Example: I have two GroupLinks n
For anyone that may be struggling with this, set this in your MainWindow.cs constructor:
Application.Current.MainWindow = this;
Then in the part of your application where you want to navigate to a page, run this:
IInputElement target = NavigationHelper.FindFrame("_top", Application.Current.MainWindow);
NavigationCommands.GoToPage.Execute("/NameOfYourPage.xaml", target);