コード例 #1
0
ファイル: MainWindow.xaml.cs プロジェクト: dani96sp/DIN
        private void btSecundariaBloquear_Click(object sender, RoutedEventArgs e)
        {
            Secundaria miventana = new Secundaria(this);

            this.IsEnabled = false;
            miventana.Show();
        }
コード例 #2
0
ファイル: MainWindow.xaml.cs プロジェクト: dani96sp/DIN
        private void btSecundariaOcultar_Click(object sender, RoutedEventArgs e)
        {
            Secundaria miventana = new Secundaria(this);

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