コード例 #1
0
ファイル: Student.cs プロジェクト: xiahal/database_proj
        private void ChangePasswordButton_Click(object sender, EventArgs e)
        {
            changePassword childrenForm = new changePassword(stu_sid);

            childrenForm.Owner = this;
            childrenForm.Show();
        }
コード例 #2
0
ファイル: Teacher.cs プロジェクト: xiahal/database_proj
        private void changePassword_Click(object sender, EventArgs e)
        {
            changePassword childrenForm = new changePassword(tch_tid);

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