Hi,
You will need to find out the root of the problem in such cases. There are three cases when a WebView is destroyed:
1. It was directly destroyed by your code. For example, by calling WebView.Destroy();
2. It was automatically destroyed when the parent window is destroyed. For example, if you put the WebView in a panel and that panel has been removed;
3. The browser engine has crashed;
You will need to find out which cases first (you can handle the WebView.Closed event and then use call stack or e.Reason in your event handler to get additional information on why the WebView is closed). If it is case 1 and case 2, then you will need to fix it in your code. If it is case 3, then please try to reproduce it in a standalone app and once you reproduce it, you can send it to us:
https://www.essentialobjects.com/forum/test_project.aspxWe will investigate further as soon as we have that.
Thanks!