예제 #1
0
        /// <summary>
        /// 学生列表
        /// </summary>
        private void tsmiStudentList_Click(object sender, EventArgs e)
        {
            FrmStudentList studentList = new FrmStudentList();

            studentList.MdiParent = this;
            studentList.Show();
        }
예제 #2
0
        private void btnStudentList_Click(object sender, EventArgs e)
        {
            FrmStudentList frmSt = new FrmStudentList();

            frmSt.ShowDialog();
        }
예제 #3
0
파일: Entry.cs 프로젝트: wesiky/BabySwim
        public Form StudentList()
        {
            FrmStudentList frm = new FrmStudentList();

            return(frm);
        }