示例#1
0
文件: MainForm.cs 项目: Gqqq/-
        private void toolStripButton1_Click(object sender, EventArgs e)
        {
            AddStudentsForm asf = new AddStudentsForm();

            asf.Owner = this;
            asf.Show();
        }
示例#2
0
文件: MainForm.cs 项目: Gqqq/-
        private void 新建XToolStripMenuItem_Click(object sender, EventArgs e)
        {
            AddStudentsForm asf = new AddStudentsForm();

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