Exemplo n.º 1
0
 private void btnPrevTab_Click(object sender, EventArgs e)
 {
     tabs -= 1;
     if (tabs == tabsEnum.tabFrontNull)
     {
         tabs = tabsEnum.tabNull - 1;
     }
     showProperTAB();
 }
Exemplo n.º 2
0
 private void btnNextTab_Click(object sender, EventArgs e)
 {
     tabs += 1;
     if (tabs == tabsEnum.tabNull)
     {
         tabs = tabsEnum.tabLoader;
     }
     showProperTAB();
 }