You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found that:
CefRuntime.PostTask(threadId, new ActionTask(action))
the code was executed and returned true, but the code in the Action was not executed.
The text was updated successfully, but these errors were encountered:
@joaompneves Thank you very much for reply.
I found cpf.cef , It is another open-source component, using CefGlue90. It works fine with Linux.
It's sourcecode link address is : https://gitee.com/csharpui/cpf.cef .
But it works on CPF, not Avalonia. CPF is a DotNet UI framework too.
I use CefGlue.Avalonia in Debian 10. the AvaloniaCefBrowser in the program displays a blank page without triggering the LoadStart event.
this is CefGlue code :
internal sealed class ActionTask : CefTask
{
private Action _action;
public ActionTask(Action action)
{
_action = action;
}
I found that:
CefRuntime.PostTask(threadId, new ActionTask(action))
the code was executed and returned true, but the code in the Action was not executed.
The text was updated successfully, but these errors were encountered: