private void Button_Click(object sender, RoutedEventArgs e) { StatisticsWindow statistics = new StatisticsWindow(); statistics.Show(); this.Close(); }
private void goToStats(object sender, RoutedEventArgs e) { StatisticsWindow stats = new StatisticsWindow(); stats.Show(); this.Hide(); }