我目前正在构建一个将用于触摸屏的UI.因此,我想将任何Ra
dioButton组
显示为ToggleButtons的水平行.我已经想出了如何
显示ToggleButtons而不是标准项目符号:
<Style x:Key="{x:Type RadioButton}"
TargetType="{x:Type RadioButton}"
BasedOn="{StaticResource {x:Type ToggleButton}}">
但是,这将显示一列ToggleButtons,而不是一行.
你知道一个简单的方法吗?
非常感谢!
将单选按钮放在StackPanel中,并将Orientation设置为Horizontal.
<StackPanel Orientation="Horizontal">
<RadioButton Content="1"/>
<RadioButton Content="2"/>
<RadioButton Content="3"/>
</StackPanel >
原文链接:https://www.f2er.com/csharp/96992.html