如果查看TemplateStudio创建的项目中的SettingsPage.xaml,您将发现以下代码:如果我在没有使用TemplateStudio创建的项目上编写相同的代码,它将不起作用。如何找到命名空间Microsoft.UI.Xaml?
我正在做WinUI3项目。
<Page xmlns:xaml="using:Microsoft.UI.Xaml">
<RadioButton>
<RadioButton.CommandParameter>
<xaml:ElementTheme>Light</xaml:ElementTheme>
</RadioButton.CommandParameter>
</RadioButton>
</Page>
1条答案
按热度按时间643ylb081#
参考文档:下载并安装Windows UI库
在NuGet包管理器中,选择“浏览”选项卡并搜索Microsoft.UI.Xaml或WinUI。选择要使用的Windows UI库NuGet包(Microsoft.UI.Xaml包包含适用于所有应用的Fluent控件和功能)。单击“安装”。