BF2Statistics.MedalData.NewCriteriaForm.DivCriteriaList_CheckedChanged C# (CSharp) Method

DivCriteriaList_CheckedChanged() private method

private DivCriteriaList_CheckedChanged ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        private void DivCriteriaList_CheckedChanged(object sender, EventArgs e)
        {
            UpdateCheckBoxesRight();
            RadioButton Me = (RadioButton)sender;
            if (Me.Focused)
            {
                Me.Checked = true;
                DescTextBox.Text = "The Division Logical Criteria List takes 2 Stat Criteria definitions, and divides their values."
                    + " An example of use would be getting the players Kills to Deaths ratio. A third \"Value Condition\""
                    + " Can be defined. If a Value Condition is defined, this this criteria will be met if the 2 Stat Criteria's total value"
                    + " equals, or is greater than the condition value.";
                DescTextBox.SelectAll();
                DescTextBox.SelectionColor = Color.Black;
            }
        }