Ejemplo n.º 1
0
 public static AssemblerColorConfig GetInstance()
 {
     if (_instance == null)
     {
         _instance = new AssemblerColorConfig();
     }
     return(_instance);
 }
Ejemplo n.º 2
0
 public static void ShowForm()
 {
     if (_instance == null || _instance.IsDisposed)
     {
         _instance = new AssemblerColorConfig();
         //_instance.LoadConfig();
         _instance.ShowInTaskbar = false;
     }
     _instance.ShowDialog();
 }