有什么方法可以在 UWP 应用程序中开发 javascript UI 控件吗?

Is there any way to develop the javascript UI controls in UWP application?

我正在开发 UWP 应用程序。在我的应用程序中,我想使用基于 javascript html5 的 UI 组件。有什么方法可以将此 UI 嵌入到由 javascript、jquery、css、html5 完全开发的 UWP application.My ui .我想在 UWP 应用程序中使用这些组件

感谢您的任何建议,

标清

In my application i want to use javascript html5 based UI components. Is there any way to embed this UI to UWP application.

我能想到的唯一方法是嵌入 WebView in your app to include your own html pages. And use WebView.ScriptNotify 事件来与您的 html 控件通信。

如果您的应用程序的大部分将使用 html 5 个控件,我建议您创建一个基于 Html/Javascript 的 UWP 应用程序。

目前我已经参考了下面的 link 并使用 javascript 控件创建了应用程序。

https://msdn.microsoft.com/en-us/windows/uwp/get-started/create-a-hello-world-app-js-universal

谢谢