private void Window_Closed(object sender, EventArgs e) { this.Close(); Matches mw = new Matches(); mw.Show(); }
private void Matches_Button_Click(object sender, RoutedEventArgs e) { this.Hide(); var coachWindow = new Matches() { Owner = this }; coachWindow.Show(); }