Our application is an Xbap running in full trust. I have a function similar to this:
private void ShowPage(Page page)
{
NavigationWindow mainWindow = Application.Current.MainWindow as NavigationWindow;
mainWindow.Navigate(page);
}
This works great for browsing inside an existing window. I would like to open this new page in a separate window. Is there anyway to do this?
There is an overload that takes 'extraData' but I haven't been able to determine what to pass to navigate to a new window.