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

GlobalMultStatRadio_CheckedChanged() private method

private GlobalMultStatRadio_CheckedChanged ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        private void GlobalMultStatRadio_CheckedChanged(object sender, EventArgs e)
        {
            UpdateCheckBoxesLeft();
            RadioButton Me = (RadioButton)sender;
            if (Me.Focused)
            {
                Me.Checked = true;
                DescTextBox.Text = "Global Stat Multiple Times is a special criteria. It defines that, each time the criteria is met, the player "
                    + "can recieve the award agian. An example would be, If you created a Global Stat Mult Times criteria, and set its criteria "
                    + "to 5,000 kills... Every time the player reaches 5,000 kills, he will recieve the award again.";
                DescTextBox.SelectAll();
                DescTextBox.SelectionColor = Color.Black;
            }
        }