Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
安装 Microsoft.UI.Xaml NuGet 后的自述文件告诉将其<XamlControlsResources xmlns="using:Microsoft.UI.Xaml.Controls" />放入应用程序资源。但看起来这个类在 Uno 中不存在。
<XamlControlsResources xmlns="using:Microsoft.UI.Xaml.Controls" />
在这里,我看到它是在代码中添加的并带有条件编译。
Uno 目前尚不支持此类。要仅在 Windows 上添加对它的支持,您可以在 中添加以下内容App.xaml.cs:
App.xaml.cs
#if NETFX_CORE Resources.MergedDictionaries.Add(new Microsoft.UI.Xaml.Controls.XamlControlsResources()); #endif