public static Generar_Informe getInstance()
        {
            if (ventanaInformes == null)
            {
                ventanaInformes = new Generar_Informe();
            }

            return(ventanaInformes);
        }
 private void MetroWindow_Closing(object sender, System.ComponentModel.CancelEventArgs e)
 {
     Menu.getInstance().Show();
     ventanaInformes = null;
 }
 private void BtnVolver_Click(object sender, RoutedEventArgs e)
 {
     Menu.getInstance().Show();
     ventanaInformes = null;
     this.Close();
 }
示例#4
0
 private void btnInformes(object sender, RoutedEventArgs e)
 {
     Generar_Informe.getInstance().Show();
     ventanaMenu = null;
     this.Close();
 }