0

In this answer, the author proclaims:

Since WPF uses the WebBrowser control under the hood, this should work for the Frame control as well.

However, this doesn't make a lot of sense to me if the Frame is hosting a WPF page (obviously it's using a WebBrowser for web content). Does the Frame attempt to emulate a WebBrowser when it's hosting a Page, or does it actually somehow turn the Page into HTML, etc, then host it in a WebBrowser?

svbnet
  • 1,070
  • 3
  • 11
  • 29

1 Answers1

0

Frame only uses WebBrowser to render HTML content, it renders WPF controls natively.

"When the Frame control navigates to HTML content, the Frame control internally instantiates the native WebBrowser ActiveX control."

https://msdn.microsoft.com/en-us/library/system.windows.controls.frame(v=vs.110).aspx

Nick
  • 645
  • 5
  • 11