public static void DoShowDialog()
 {
     if (_instance != null)
     {
         _instance.BringToFront();
         return;
     }
     else
     {
         _instance = new FindDialog();
         _instance.ShowDialogInternal();
     }
 }
Example #2
0
		public static void DoShowDialog()
		{
			if (_instance != null) {
				_instance.BringToFront();
				return;
			} else {
				_instance = new FindDialog();
				_instance.ShowDialogInternal();
			}
		}