Пример #1
0
        private void btnUpdate_Click(object sender, EventArgs e)
        {
            Course          c   = CourseManageAction.QueryCourseInfo(tbCourseNo.Text);
            InputCourseForm acf = new InputCourseForm(c);

            acf.MdiParent = this.MdiParent;
            acf.Show();
        }
Пример #2
0
 private void btnAdd_Click(object sender, EventArgs e)
 {
     CourseManager.InputCourseForm ic = new InputCourseForm();
     ic.MdiParent = this.MdiParent;
     ic.Show();
 }
Пример #3
0
 private void 增加ToolStripMenuItem1_Click(object sender, EventArgs e)
 {
     CourseManager.InputCourseForm icf = new CourseManager.InputCourseForm();
     icf.MdiParent = this;
     icf.Show();
 }