Reputation: 119
Is there a way to load another page into a frame within a grid?
For example, if I have a main page with a content row and column, I want to load another page into that content row and column (ie. frame)?
I know its possible because other apps do it
Thanks a lot
Upvotes: 0
Views: 514
Reputation: 505
Let the frame navigate to the page, Here is an example for VB.net:
frameA.Navigate(GetType(TestPage))
Upvotes: 1
Reputation: 1000
Use beter the <WebView .../>
element to view a webpage.
http://msdn.microsoft.com/en-us/library/windows/apps/windows.ui.xaml.controls.webview
Upvotes: 0