Martin
Martin

Reputation: 119

How do you load a page into a frame in WinRT?

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

Answers (2)

blaffie
blaffie

Reputation: 505

Let the frame navigate to the page, Here is an example for VB.net:

frameA.Navigate(GetType(TestPage))

Upvotes: 1

user1731468
user1731468

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

Related Questions