예제 #1
0
 void NormalisedRadioButtonChecked(DriverIndexEventArgs e)
 {
     if (checkBoxes[e.DriverIndex].Checked) //set as the normalised driver
     {
         ChangeNormalisedDriver(e.DriverIndex);
     }
     else //no changes to be made
     {
         UpdateRadioButtons(Data.DriverIndex);
     }
 }
예제 #2
0
        void DriverCheckBoxChanged(DriverIndexEventArgs e)
        {
            bool showTrace = checkBoxes[e.DriverIndex].Checked;

            ShowHideTraces(e.DriverIndex, showTrace);
        }