摘要: 父窗口 Main//学生档案管理 private void button1_Click(object sender, EventArgs e) { this.Enabled = false;//当前窗体不可用 StudentInfo si = new StudentInfo(this);//初始化要打开的窗体,Form1为要打开的窗体的类名。 si.ShowDialog();//显示新的窗体。 }子窗口StudentInfopublic partial class StudentInfo... 阅读全文
posted @ 2013-05-30 18:55 勇仔X 阅读(602) 评论(0) 推荐(0) 编辑