public void GotoStudent() { var studWin = new StudentWindow(); studWin.Show(); studWin.Topmost = true; }
private void OpenStudentWindowButton_Click(object sender, RoutedEventArgs e) { StudentWindow sw = new StudentWindow(); sw.Show(); }