C# UWP 单选按钮样式
C# UWP radiobutton style
我的 UWP 应用程序中的单选按钮默认样式有问题
我使用了 Windows.UI.Xaml.Controls 中的默认单选按钮,它看起来像:
我在 docs.microsoft 阅读了关于单选按钮的页面,单选按钮的样式是另一种:
为什么我的单选按钮不一样?
我使用 UWP 应用程序,最小版本 Windows 10 Fall Creators(16299),目标版本 Windows 10(1803,build 17134)
我的 nuget 包:
如果需要我可以更新它们
我的单选按钮需要这样的东西:
I read page about radiobutton at docs.microsoft and there style of radiobutton is another
文档样式来自WinUI库,如果您使用过Microsoft.UI.Xaml
nuget,将XamlControlsResources
添加到应用程序xaml中,它会自动更新单选按钮样式。
<Application.Resources>
<XamlControlsResources xmlns="using:Microsoft.UI.Xaml.Controls" />
</Application.Resources>
深色主题单选按钮样式满足您的要求。更多详情请参考Getting started with the Windows UI 2 Library
我的 UWP 应用程序中的单选按钮默认样式有问题
我使用了 Windows.UI.Xaml.Controls 中的默认单选按钮,它看起来像:
我在 docs.microsoft 阅读了关于单选按钮的页面,单选按钮的样式是另一种:
为什么我的单选按钮不一样?
我使用 UWP 应用程序,最小版本 Windows 10 Fall Creators(16299),目标版本 Windows 10(1803,build 17134)
我的 nuget 包:
我的单选按钮需要这样的东西:
I read page about radiobutton at docs.microsoft and there style of radiobutton is another
文档样式来自WinUI库,如果您使用过Microsoft.UI.Xaml
nuget,将XamlControlsResources
添加到应用程序xaml中,它会自动更新单选按钮样式。
<Application.Resources>
<XamlControlsResources xmlns="using:Microsoft.UI.Xaml.Controls" />
</Application.Resources>
深色主题单选按钮样式满足您的要求。更多详情请参考Getting started with the Windows UI 2 Library