RadioButton

Posted Lulus

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了RadioButton相关的知识,希望对你有一定的参考价值。

同属一个GroupName则互斥,只能选择一个

<StackPanel Orientation="Vertical">
    <Label Content="Group1:水果"></Label>
    <RadioButton GroupName="Group1" Content="苹果"></RadioButton>
    <RadioButton GroupName="Group1" Content="荔枝"></RadioButton>
    <RadioButton GroupName="Group1" Content="西瓜"></RadioButton>
    <RadioButton GroupName="Group1" Content="香蕉"></RadioButton>
    <Label Content="Group2:科目"></Label>
    <RadioButton GroupName="Group2" Content="语文"></RadioButton>
    <RadioButton GroupName="Group2" Content="数学"></RadioButton>
    <RadioButton GroupName="Group2" Content="英语"></RadioButton>
    <RadioButton GroupName="Group2" Content="物理"></RadioButton>
</StackPanel>

上面的示例中,可以选择水果、科目下各一个选项,所以水果和科目不互斥,水果之间互斥,科目之间互斥

 
技术分享图片
 

 

示例代码

https://github.com/zLulus/NotePractice/tree/dev3/WPF/WpfDemo/RadioButton

以上是关于RadioButton的主要内容,如果未能解决你的问题,请参考以下文章

qt怎么用代码让radiobutton取消选中

android 代码中设置radiobutton选中与为选中颜色

android 动态添加的radiobutton怎么用代码设置文字居中

python tkinter 组件功能实例总结(代码+效果图)(Radiobutton | Button | Entry | Menu | Text)

利用代码动态改变radiobutton 的 selector

如何用radiobutton如何使用