
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>
Read more: 2,000 Things You Should Know About WPF
QR: