c# – WPF:如何让Radiobuttons显示为ToggleButtons的水平行

前端之家收集整理的这篇文章主要介绍了c# – WPF:如何让Radiobuttons显示为ToggleButtons的水平行前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我目前正在构建一个将用于触摸屏的UI.因此,我想将任何RadioButton组显示为ToggleButtons的水平行.我已经想出了如何显示ToggleButtons而不是标准项目符号:
<Style x:Key="{x:Type RadioButton}" 
           TargetType="{x:Type RadioButton}" 
           BasedOn="{StaticResource {x:Type ToggleButton}}">

但是,这将显示一列ToggleButtons,而不是一行.
你知道一个简单的方法吗?

非常感谢!

解决方法

将单选按钮放在StackPanel中,并将Orientation设置为Horizo​​ntal.
<StackPanel Orientation="Horizontal">
   <RadioButton Content="1"/>
   <RadioButton Content="2"/>
   <RadioButton Content="3"/>
</StackPanel >
原文链接:https://www.f2er.com/csharp/96992.html

猜你在找的C#相关文章