Example #1
0
        private void Button_Accepted_Click(object sender, RoutedEventArgs e)
        {
            //Crear usuario aprobado
            WindowCreateUser windowsCreateUser = new WindowCreateUser();

            windowsCreateUser.ShowDialog();
        }
        private void Button_Click(object sender, RoutedEventArgs e)
        {
            WindowCreateUser PantallaCreateUser = new WindowCreateUser();

            this.Hide();
            PantallaCreateUser.ShowDialog();
            this.Show();
        }