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