ARKBreedingStats.Form1.checkBoxStatTestingBred_CheckedChanged C# (CSharp) Method

checkBoxStatTestingBred_CheckedChanged() private method

private checkBoxStatTestingBred_CheckedChanged ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        private void checkBoxStatTestingBred_CheckedChanged(object sender, EventArgs e)
        {
            setTesterInputsTamed(checkBoxStatTestingBred.Checked || checkBoxStatTestingTamed.Checked);
            checkBoxStatTestingTamed.Enabled = !checkBoxStatTestingBred.Checked;
            NumericUpDownTestingTE.Enabled = !checkBoxStatTestingBred.Checked;
            numericUpDownImprintingBonusTester.Enabled = checkBoxStatTestingBred.Checked;
            labelImprintingTester.Enabled = checkBoxStatTestingBred.Checked;
            updateAllTesterValues();
        }
Form1