コード例 #1
0
        private void administratorButton_Click(object sender, EventArgs e)
        {
            StudentAssignForm studentAssignForm = new StudentAssignForm(3);

            this.Hide();
            studentAssignForm.Show();
        }
コード例 #2
0
        private void teacherButton_Click(object sender, EventArgs e)
        {
            StudentAssignForm studentAssignForm = new StudentAssignForm(1);

            this.Hide();
            studentAssignForm.Show();
        }
コード例 #3
0
        private void chairmanButton_Click(object sender, EventArgs e)
        {
            StudentAssignForm studentAssignForm = new StudentAssignForm(2);

            this.Hide();
            studentAssignForm.Show();
        }