Esempio n. 1
0
        private void addStudentToolStripMenuItem_Click(object sender, EventArgs e)
        {
            StudentList StudentListForm = new StudentList();

            StudentListForm.Shown += new EventHandler(StudentListForm.btnAdd_Click);
            StudentListForm.ShowDialog();
        }
Esempio n. 2
0
        private void studentListToolStripMenuItem_Click(object sender, EventArgs e)
        {
            StudentList StudentListForm = new StudentList();

            StudentListForm.ShowDialog();
        }