BF2Statistics.BF2sConfig.CmCountry_Validating C# (CSharp) Method

CmCountry_Validating() private method

private CmCountry_Validating ( object sender, CancelEventArgs e ) : void
sender object
e CancelEventArgs
return void
        private void CmCountry_Validating(object sender, CancelEventArgs e)
        {
            if (!Validator.IsAlphaOnly(CmCountry.Text))
            {
                MessageBox.Show("Invalid format for Criteria > Country. Must contain letters only!", "Validation Error");
            }
        }