Hello,
After getting CefSharp 3 working in my own WPF application I started playing around with some webpages I had made up before which heavily utilise Javascript.
The WebView control is what I'm using in my application and while it did run the webpage I was testing with worked there was some performance issues which I wasn't happy with, I compared it to the CefSharp.MinimalExample and it had the same performance issue. I then opened the webpage in the CefSharp.Wpf.Example and the performance issues weren't there.
Upon investigation (and without an in depth knowledge of how everything works together) I found that while the WebView control is used in the CefSharp.MinimalExample, the ChromiumWebBrowser control is used the in the CefSharp.Wpf.Example.
So my question is simply, what is the difference between the two controls and why would the ChromiumWebBrowser control perform significantly better?
Regards,
Clayton