Exemplo n.º 1
0
 public void ShowTabPage(TabControl control, MainTabsTypeCodes code)
 {
     if (_hidenTabPane == null)
     {
         return;
     }
     control.TabPages.Insert((int)code, _hidenTabPane);
     _hidenTabPane = null;
 }
Exemplo n.º 2
0
 public void HideTabPage(TabControl control, MainTabsTypeCodes code)
 {
     if (_hidenTabPane != null)
     {
         return;
     }
     _hidenTabPane = control.TabPages[(int)code];
     control.TabPages.RemoveAt((int)code);
 }