Ejemplo n.º 1
0
		public static void ShowForm()
		{
			if (instance == null) {
				instance = new ManagerForm();
				#if STANDALONE
				instance.Show();
				#else
				instance.Show(ICSharpCode.SharpDevelop.Gui.WorkbenchSingleton.MainWin32Window);
				#endif
			} else {
				instance.Activate();
			}
		}
Ejemplo n.º 2
0
 public static void ShowForm()
 {
     if (instance == null)
     {
         instance = new ManagerForm();
                         #if STANDALONE
         instance.Show();
                         #else
         instance.Show(ICSharpCode.SharpDevelop.Gui.WorkbenchSingleton.MainWin32Window);
                         #endif
     }
     else
     {
         instance.Activate();
     }
 }
Ejemplo n.º 3
0
		public static void ShowForm()
		{
			if (instance == null) {
				instance = new ManagerForm();
				#if !STANDALONE
				instance.Owner = ICSharpCode.SharpDevelop.Gui.WorkbenchSingleton.MainForm;
				#endif
				instance.Show();
			} else {
				instance.Activate();
			}
		}
Ejemplo n.º 4
0
 public static void ShowForm()
 {
     if (instance == null)
     {
         instance = new ManagerForm();
                         #if !STANDALONE
         instance.Owner = ICSharpCode.SharpDevelop.Gui.WorkbenchSingleton.MainForm;
                         #endif
         instance.Show();
     }
     else
     {
         instance.Activate();
     }
 }