#380 – The Frame Control Can Host Web Content

You can use the Frame control to host web content by setting its Source property to a valid URL.  Note that the control can also display standard web navigation controls.

    <Grid>
        <Grid.ColumnDefinitions>
            <ColumnDefinition/>
            <ColumnDefinition/>
        </Grid.ColumnDefinitions>

        <Frame Grid.Column="0" Source="http://en.wikipedia.org/wiki/Snoopy"
               NavigationUIVisibility="Visible"/>

        <Frame Grid.Column="1" Source="http://acepilots.com/wwi/ger_richthofen.html"
               NavigationUIVisibility="Visible"/>
    </Grid>

Advertisement