private void BtnBack_Click(object sender, RoutedEventArgs e) { ManageQuestionWindow manageQuestionWindow = new ManageQuestionWindow(); manageQuestionWindow.Show(); this.Close(); }
private void BtnQuestions_Click(object sender, RoutedEventArgs e) { ManageQuestionWindow ManageQuestionWindow = new ManageQuestionWindow(); ManageQuestionWindow.WindowStartupLocation = WindowStartupLocation.CenterScreen; ManageQuestionWindow.Show(); this.Close(); }