我如何知道您使用的是 WinUI 2 还是 WinUI 3?
How can I find out whether you are using WinUI 2 or WinUI 3?
目前,我正在尝试学习如何在 WPF 应用程序中使用 UWP UI 组件。
我正在按照 https://github.com/rvinothrajendran/XamlIslands
中的示例进行操作
但是,请问我如何知道该示例是使用 WinUI 2 还是 WinUI 3?
谢谢。
如果您查看 WPFXamlTemplate.csproj file, you'll see that it has a <PackageReference>
to Microsoft.Toolkit.Wpf.UI.Controls 6.0.0-preview5。
这被称为 Windows Community Toolkit which is a separate project from Win UI。
它使用 XAML Islands 在 WPF 应用程序中托管本机 UWP 控件。
目前,我正在尝试学习如何在 WPF 应用程序中使用 UWP UI 组件。
我正在按照 https://github.com/rvinothrajendran/XamlIslands
中的示例进行操作但是,请问我如何知道该示例是使用 WinUI 2 还是 WinUI 3?
谢谢。
如果您查看 WPFXamlTemplate.csproj file, you'll see that it has a <PackageReference>
to Microsoft.Toolkit.Wpf.UI.Controls 6.0.0-preview5。
这被称为 Windows Community Toolkit which is a separate project from Win UI。
它使用 XAML Islands 在 WPF 应用程序中托管本机 UWP 控件。