I want to do something like this:
var iFrame = new Frame();
var iPage = new Page(new Uri("/Views/MyPage.xaml", UriKind.Relative));
// ^ this must be the parameter on creating the page
iFrame.Content = iView;
tabCtrl.Content = iFrame;
Wherein, I want to open the page using the path instead of instantiating the page itself which is functionally correct like this:
var iFrame = new Frame();
var iPage = new MyPage();
iFrame.Content = iView;
tabCtrl.Content = iFrame;
My idea is to use a maintained path for the Page stored in the database. Any thoughts?