コード例 #1
0
        public static Generar_Informe getInstance()
        {
            if (ventanaInformes == null)
            {
                ventanaInformes = new Generar_Informe();
            }

            return(ventanaInformes);
        }
コード例 #2
0
 private void MetroWindow_Closing(object sender, System.ComponentModel.CancelEventArgs e)
 {
     Menu.getInstance().Show();
     ventanaInformes = null;
 }
コード例 #3
0
 private void BtnVolver_Click(object sender, RoutedEventArgs e)
 {
     Menu.getInstance().Show();
     ventanaInformes = null;
     this.Close();
 }
コード例 #4
0
ファイル: Menu.xaml.cs プロジェクト: Darkegami/SystemYuyitos
 private void btnInformes(object sender, RoutedEventArgs e)
 {
     Generar_Informe.getInstance().Show();
     ventanaMenu = null;
     this.Close();
 }