Can I use the Chromium Embedded Framework (CEF) in Windows Store apps

How to integrate the Xromium Embedded Framework (CEF) in the Windows Store app (Metro Style). I read the CEF Wiki - https://code.google.com/p/chromiumembedded/ , but did not find anything related to Windows Store Apps. There is a tutorial for a WPF application - https://code.google.com/p/chromiumembedded/wiki/Tutorial And there is an example for WPF App-cefclient. Is there an example for Windows Store apps? I want to create a CEF webview in a Windows Store app.

+6
source share
2 answers

We tried this, but the problem was distributing the CEF binaries with the Windows store application, which would not be an application certificate. We use the WebView provided by the Windows application to program web content. We could interact with rendered javascript with ScriptNotify and InvokeScriptAsync.

Please see http://blogs.windows.com/windows/b/appbuilder/archive/2013/07/17/what-s-new-in-webview-in-windows-8-1.aspx if you are interested the details.

+6
source

This works if you are using the Desktop Bridge application. ( https://magpcss.org/ceforum/viewtopic.php?f=6&t=16135 )

0
source

Source: https://habr.com/ru/post/970672/


All Articles