WebBrowser Control in WPF
In this article, I am going to show how we can use WebBrowser control to show html document within our WPF application. WPF introduces WebBrowser control to ensure that we can show html pages embedded inside the control. Here I use 2 buttons also to go back and forward. This is my XAML code < Window x : Class ="WebBrowserControlIn_WPF.Window1" xmlns ="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns : x ="http://schemas.microsoft.com/winfx/2006/xaml" Title ="WebBrowser Control in WPF" Height ="Auto" Width ="Auto" Loaded ="Window_Loaded"> < Grid x : Name ="LayoutRoot" Width ="Auto"> < Grid.RowDefinitions > < RowDefinition Height ="10"/> < RowDefinition He...