可以将 DotNetBrowser 与 UWP 应用程序一起使用吗?
Possible to use DotNetBrowser with UWP Applications?
我看到 DotNetBrowser 与 WPF 一起工作,那么 UWP 应用程序呢?
UWP 应用程序不支持 DotNetBrowser。您可以改用 WebView 控件。
这是文档。
https://msdn.microsoft.com/library/windows/apps/windows.ui.xaml.controls.webview.aspx
WebView 不支持 Chrome 引擎或类似的东西。
I want to Cordova to use Chrome when running its windows uwp apps
目前在面向Windows平台的Cordova项目中是不可能的,你会得到这个异常
Failed to add reference to 'DotNetBrowser.Chromium'
如果您有传统的桌面应用程序(如 Win32、WPF 和 Windows Forms),您可以检查这个工具:Convert your desktop application to a Universal Windows Platform (UWP) app
UWP using Desktop Conversion extensions is a bridge that enables you
to convert your Windows desktop application (like Win32, Windows
Forms, and WPF) or game to a Universal Windows Platform (UWP) app or
game. For more info, see Guide to UWP apps. After conversion, your
Windows desktop application is packaged, serviced, and deployed in the
form of a UWP app package (an .appx or an .appxbundle) targeting
Windows 10 Desktop.
我看到 DotNetBrowser 与 WPF 一起工作,那么 UWP 应用程序呢?
UWP 应用程序不支持 DotNetBrowser。您可以改用 WebView 控件。 这是文档。 https://msdn.microsoft.com/library/windows/apps/windows.ui.xaml.controls.webview.aspx WebView 不支持 Chrome 引擎或类似的东西。
I want to Cordova to use Chrome when running its windows uwp apps
目前在面向Windows平台的Cordova项目中是不可能的,你会得到这个异常
Failed to add reference to 'DotNetBrowser.Chromium'
如果您有传统的桌面应用程序(如 Win32、WPF 和 Windows Forms),您可以检查这个工具:Convert your desktop application to a Universal Windows Platform (UWP) app
UWP using Desktop Conversion extensions is a bridge that enables you to convert your Windows desktop application (like Win32, Windows Forms, and WPF) or game to a Universal Windows Platform (UWP) app or game. For more info, see Guide to UWP apps. After conversion, your Windows desktop application is packaged, serviced, and deployed in the form of a UWP app package (an .appx or an .appxbundle) targeting Windows 10 Desktop.