-
|
I've been wanting to replace the Blank screen when handing load errors by using the ILoadErrorHandler class but I don't know how to correctly display HTML in CefSharp 88.2.90 I've been needing some assistance Simply I wanna create something like this if anyone can guide me on how to properly display HTML in 88.2.90 then Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
There's no See the following for an example using the https://github.com/cefsharp/CefSharp/wiki/General-Usage#loading-htmlcssjavascriptetc-from-diskdatabaseembedded-resourcestream has examples of loading html from disk/in memory etc. |
Beta Was this translation helpful? Give feedback.


There's no
ILoadErrorHandlerinterface, possibly you mean ILoadHandler.OnLoadErrorSee the following for an example using the
LoadErrorevent, you can useILoadHandler.OnLoadErrorif you choose, they're the same.CefSharp/CefSharp.Wpf.Example/Views/BrowserTabView.xaml.cs
Line 165 in 13e74fe
https://github.com/cefsharp/CefSharp/wiki/General-Usage#loading-htmlcssjavascriptetc-from-diskdatabaseembedded-resourcestream has examples of loading html from disk/in memory etc.