WPF RadioButton控件 一定要选一个
RadioButton
控件用于提供多个选项供用户选择,其中只能选择一个。RadioButton
通常用于一组互斥的选项,如性别选择或支付方式选择,如判断题选择选项。
<StackPanel> <Label>请选择你的性别:</Label> <RadioButton >男</RadioButton> <RadioButton>女</RadioButton> </StackPanel>
按F5运行,点一点,可以看到只能选择一项,不能选择多项。
标签:选项,控件,要选,选择,RadioButton,WPF From: https://www.cnblogs.com/surfnet/p/18528955