コード例 #1
0
ファイル: Students.cs プロジェクト: thasan3003/PSMS
        private void ViewButton_Click(object sender, EventArgs e)
        {
            StudentProfile spFobj = new StudentProfile(teacher, selectedID);

            t.Start();
            while (t.IsAlive)
            {
                this.Hide();
                spFobj.ShowDialog();
            }
            t.Abort();
            this.Close();
        }
コード例 #2
0
ファイル: Admission.cs プロジェクト: thasan3003/PSMS
        private void ViewProfile()
        {
            StudentProfile spFobj = new StudentProfile(teacher, selectedID);

            t.Start();
            while (t.IsAlive)
            {
                this.Hide();
                spFobj.ShowDialog();
            }
            t.Abort();
            this.Close();
        }