I had followed this link to implement CefSharp applicaton.
But I have stuck while coding MainWindow.xaml
.
Blend for VS 2015 said,
its not supported in the XAML desginer, so load it in run time:
Remove the element from the XAMl, and instead place any container such as a Border:
in the Constructor code, after InitializeComponent();
call, craete the browser element and place into the container. even better to declare the browser in the class scoop:
CefSharp.Wpf.ChromiumWebBrowser browser = new CefSharp.Wpf.ChromiumWebBrowser();
public MainWindow()
{
InitializeComponent();
cefChromeContainer.Content = browser;
browser.Address = "https://stackoverflow.com";
}