Example #1
0
        private void btSecundariaBloquear_Click(object sender, RoutedEventArgs e)
        {
            Secundaria miventana = new Secundaria(this);

            this.IsEnabled = false;
            miventana.Show();
        }
Example #2
0
        private void btSecundariaOcultar_Click(object sender, RoutedEventArgs e)
        {
            Secundaria miventana = new Secundaria(this);

            miventana.Show();
            this.Hide();
        }