Пример #1
0
        private void button3_Click(object sender, EventArgs e)
        {
            InputStudentForm isf = new InputStudentForm();

            isf.MdiParent = this.MdiParent;
            isf.Show();
        }
Пример #2
0
        private void btnUpdate_Click(object sender, EventArgs e)
        {
            Student          st  = StudentManageAction.QueryStudentInfo(tbStudentNo.Text);
            InputStudentForm asf = new InputStudentForm(st);

            asf.MdiParent = this.MdiParent;
            asf.Show();
        }