Exemple #1
0
 public static Explora GetInstancia()
 {
     if (_instance == null)
     {
         _instance = new Explora();
     }
     return(_instance);
 }
Exemple #2
0
 void ToolStripExplorerClick(object sender, EventArgs e)
 {
     try
     {
         Explora explo = Explora.GetInstancia();
         explo.Show(this);
     }
     catch (Exception)
     {
         ;
     }
     //deberia desabilitar el boton hasta cerrar el formulario
 }