c#: 如何在 winform 中弹出 uwp 项目

c#: How to popup uwp project in winform

我想在 Winform 项目
中单击按钮时弹出 UWP 项目 我尝试弹出 WPF,但它在 UWP 中不起作用。在 WinForm 中我无法添加对 UWP 项目的引用,所以我不知道该怎么做。 UWP资料少,搜索困难

如何在Winform中弹出UWP?

如果您想从 WinForms 应用程序启动 UWP 应用程序,您需要注册 首先为您的 UWP 应用程序提供协议。它将用作 UWP 应用的 URI 方案名称。然后您可以在您的 WinForms 应用程序中调用 Launcher.LaunchUriAsync Method 来启动 UWP 应用程序。

你也可以在这里参考Nico的回复:How to launch UWP app from windows forms using C#