标签:使用 edit 程序 load windows select nta 选中 布局
1.会使用基本控件设计窗体,并合理布局
2.会实现MDI风格的窗体
3.能将数据库中的数据读取出来显示在窗体上
4.能将窗体中的数据保存到数据库
Anchor:锚,使固定
Dock:码头,停靠
WinForm窗体加载完后触发的事件:
private void FrmEditStudent_Load(object sender, EventArgs e)
{
this.cboGrade.Items.Add("S1");
this.cboGrade.Items.Add("S2");
this.cboGrade.Items.Add("Y2");
选中S1 :this.cboGrade.selectedIndex= 0 ;
}
标签:使用 edit 程序 load windows select nta 选中 布局
原文地址:http://www.cnblogs.com/ppdpp/p/7635496.html