comobox控件

Item:组合框中的项

Dropdowmstyle:是否可以自己添加符号

Selectedindex:选中项的索引if (txt.SelectSionStart != 0)

cboDay.SelectedIndex = 0;指定控件选中索引为0的

SelectedIndexChanged事件:只要用户选中一项就会触发

 

1 for (int i = 1; i <= 12; i++)
2 {
3 this.comboBox1.Items.Add(i.ToString());
4 }
5 this.comboBox1.SelectedIndex = 0;
6 this.comboBox1.DropDownStyle = ComboBoxStyle.DropDownList;

 

 

Timer控件:定时器 是个不可视控件

属性:intervl定时的时间间隔

Enbaled;是否有效

方法:

Stop():停止

Start()

Tick():每隔intervl时间就会触发一次tick事件