Example #1
0
 public static void ShowGenericResults()
 {
     if (AppGlobals.GenericResultsWindowInstance == null || AppGlobals.GenericResultsWindowInstance.IsDisposed)
     {
         AppGlobals.GenericResultsWindowInstance = new Windows.GenericResultsWindow();
         AppGlobals.ShowWin(AppGlobals.GenericResultsWindowInstance,
                            WeifenLuo.WinFormsUI.Docking.DockState.DockBottomAutoHide);
     }
 }
Example #2
0
 public static void ShowBlocksetBrowser()
 {
     if (AppGlobals.BlockSetWindowInstance == null || AppGlobals.BlockSetWindowInstance.IsDisposed)
     {
         AppGlobals.BlockSetWindowInstance = new Windows.BlockSetWindow();
         AppGlobals.ShowWin(AppGlobals.BlockSetWindowInstance,
                            WeifenLuo.WinFormsUI.Docking.DockState.DockRight);
     }
 }