使用 XAML Islands 在 WPF 应用程序中托管标准 UWP 控件

Host a standard UWP control in a WPF app using XAML Islands

我使用以下示例在使用 XAML Islands 的 WPF 应用程序中托管标准 UWP 控件: https://docs.microsoft.com/en-us/windows/apps/desktop/modernize/host-standard-control-with-xaml-islands

但是如果我说到重点:

  1. In your WPF project, right-click the Dependencies node and add a reference to your UWP app project.

我收到以下错误:

Unable to add a reference to project…

为什么这不起作用?

In your WPF project, right-click the Dependencies node and add a reference to your UWP app project.

恐怕您无法将 UWP 项目添加到 WPF 应用程序(.NET 框架)。因为它不包含 Dependencies 选项。

我试过创建.NET Core WPF App(如果你想创建一个WPF App(.NET Core)项目,你必须先安装最新版本的.NET Core 3 SDK。)app并添加UWP引用,就成功了。并且请确保目标版本和最低版本都设置为 Windows 10,版本 1903 或更高版本。