Ejemplo n.º 1
0
        private void Window_Closed(object sender, EventArgs e)
        {
            this.Close();
            Matches mw = new Matches();

            mw.Show();
        }
Ejemplo n.º 2
0
        private void Matches_Button_Click(object sender, RoutedEventArgs e)
        {
            this.Hide();
            var coachWindow = new Matches()
            {
                Owner = this
            };

            coachWindow.Show();
        }