Beispiel #1
0
        private void btnGPACalculator_Click(object sender, EventArgs e)
        {
            GPACalculator gpa = new GPACalculator();

            this.Hide();
            gpa.ShowDialog();
            LoadCourses(Files);
            this.Show();
        }
        private void showGPAButton(object sender, RoutedEventArgs e)
        {
            GPACalculator GPACalc = new GPACalculator();

            GPACalc.Show();
        }