Ejemplo n.º 1
0
 private void CheckBoxRandom_Click(object sender, EventArgs e)
 {
     if (DisplayModeForOthers != DisplayModeForOthersEnum.Random)
     {
         DisplayModeForOthers = DisplayModeForOthersEnum.Random;
     }
     else
     {
         OnReselectTaxon(_CurrentTaxon);
     }
     checkBoxRandom.Checked = true;
 }
Ejemplo n.º 2
0
 private void CheckBoxList_Click(object sender, EventArgs e)
 {
     DisplayModeForOthers = DisplayModeForOthersEnum.AllWithScroll;
     checkBoxList.Checked = true;
 }