一、checkBox(复选框)
1、属性
checkBox1.Checked——判断是否选中
2、事件
checkBox1_CheckedChanged——复选框的值是否改变
3、例子
private void checkBox1_CheckedChanged(object sender, EventArgs e)//二选一 { if (checkBox1.Checked) { Text = "你选了男生"; checkBox2.Checked = false; } } private void checkBox2_CheckedChanged(object sender, EventArgs e) { if (checkBox2.Checked) { Text = "你选了女生"; checkBox1.Checked = false; } }
二、comboBox(下拉列表)
1、属性
comboBox1.SelectedItem——选中的对象
comboBox1.SelectedIndex——选中索引
2、事件
comboBox1_SelectedIndexChanged——选中索引值改变
3、例子
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)//下拉 { Text = "你选了第" + comboBox1.SelectedIndex.ToString() + "个学院,是"+comboBox1.SelectedItem.ToString()+"学院"; }