Пример #1
0
        private void btnViewMyChildren_Click(object sender, EventArgs e)
        {
            //open view window
            ParentStudentsWindow wnd = new ParentStudentsWindow(this.ParentID);

            wnd.FormClosed += ((o, s) =>
            {
                this.Show();
            });
            wnd.Owner = this;
            wnd.Show();
            this.Hide();
        }
Пример #2
0
 private void btnViewMyChildren_Click(object sender, EventArgs e)
 {
     //open view window
     ParentStudentsWindow wnd = new ParentStudentsWindow(this.ParentID);
     wnd.FormClosed += ((o, s) =>
     {
         this.Show();
     });
     wnd.Owner = this;
     wnd.Show();
     this.Hide();
 }