-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Resolve: IsLoaded is unreliable #913
Conversation
…magpcss.org/ceforum/apidocs3/projects/%28default%29/CefLoadHandler.html#OnLoadStart%28CefRefPtr%3CCefBrowser%3E,CefRefPtr%3CCefFrame%3E%29 `For notification of overall browser load status use OnLoadingStateChange instead.` So migrating `WPF` property to `OnLoadingStateChange`
When complete this will fix #909 |
I can push this through WinForms separately if you like. Bill |
Oh, If we do this push this through, we should add a depreciated attribute to Bill |
Hmm, yeah maybe making the Looking at So I think the short term question is, do we remove |
If we remove |
I think the Well, at a minimum depreciated I think, although if you're ok with the renaming to If we were going to rename in 41.x I think it would be ok to depreciate in 39.0.1 (or whatever) if we wanted. Bill |
As they basically just fire events, I wonder if that's necessary? My initial though would be that locking maybe slowing things down, by how much I'm not sure.
Sounds like a plan 👍 |
I don't know if the lock is necessary or not, its certainly nicer to the consumer of CefSharp if you can have the two events fire on different threads from CEF and not have to care about it at the level of CefSharp's users. |
I think if we remove the call to |
#931 has changes for Just a matter of making the |
Resolve: IsLoaded is unreliable
http://magpcss.org/ceforum/apidocs3/projects/%28default%29/CefLoadHandler.html#OnLoadStart%28CefRefPtr%3CCefBrowser%3E,CefRefPtr%3CCefFrame%3E%29
For notification of overall browser load status use OnLoadingStateChange instead.
Initially just migrating
WPF
control. When it's configured, update the other two flavours.