Our application is a full-featured Xbap. I have a function like this:
private void ShowPage(Page page)
{
NavigationWindow mainWindow = Application.Current.MainWindow as NavigationWindow;
mainWindow.Navigate(page);
}
This works great for viewing inside an existing window. I would like to open this new page in a separate window. Is there any way to do this?
There is an overload that accepts "extraData", but I could not determine what to pass in order to go to a new window.
source
share