Ejemplo n.º 1
0
        private void CounselorBtn_Click(object sender, RoutedEventArgs e)
        {
            //opens the counselor window when counselor button is clicked
            Counselors frmCounselor = new Counselors();

            frmCounselor.ShowDialog();
            this.Show();
        }
Ejemplo n.º 2
0
        private void Counselor_Click(object sender, RoutedEventArgs e)
        {
            //Opens Counselor window
            Counselors frmCounselor = new Counselors();

            frmCounselor.ShowDialog();
            this.Show();
        }