C# RadioButton是大家经常用的一个控件,其属性之多,但是我们只需掌握其中几个就可以了,下面将做一下简单的介绍。
C# RadioButton单选按钮一般用作一个组。
1.C# RadioButton只允许用户从几个选项中选择一个,同一个容器中一次只能选择一个按钮;
2.C# RadioButton的Appearance属性:根据的以下两种取值控制外观:
Normal:圆圈+标签,选中后会填充圆圈;
Button:按钮,类似于开关,选中后按下,未选中时凸起;
3.C# RadioButton的Checked属性:
true:选中;
false: 未选中;
4.C# RadioButton的CheckedAlign属性:确定圆圈与标签文本的相对位置。
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Text;
- using System.Windows.Forms;
- namespace TestRadioButton
- {
- public partial class Form1 : Form
- {
- public Form1()
- {
- InitializeComponent();
- }
- private void button1_Click(object sender, EventArgs e)
- {
- string checkedRBName = "";
- //取得选中单选按钮的名称
- if (radioButton1.Checked)
- {
- checkedRBName = radioButton1.Name;
- }
- else if (radioButton2.Checked)
- {
- checkedRBName = radioButton2.Name;
- }
- else
- {
- checkedRBName = radioButton3.Name;
- }
- MessageBox.Show(checkedRBName + " was checked.");
- }
- }
- }
以上就是对C# RadioButton的简单介绍。
【编辑推荐】