How do I embed a webpage in XAML using <Frame>?
I currently have:
Code: Select all
<StackPanel Margin="10">
<Frame Source="https://www.google.co.za"/>
</Stackpanel>
In the XAML Designer I can see it loading the webpage, however in the Simulator I only get a blank screen.
Drilling down into the Visual Tree, I see that the Frame <Source> is "null"
Then when I run it in the Chrome browser, I get the same as the simulator.
Drilling down into the html code, I see that the Frame does not have a <Source> property.
Am I doing something wrong?