我想在验证失败后更改 TextBoxes 边框颜色,但我不想通过 Paint 事件来做到这一点。
我有一个类Validators
和验证文本框的方法。
例如:
public bool ValidateDecimalTextBoxes(params TextBox[] textBoxes)
{
//Validates decimal textboxes.
//If the textbox is not a decimal value, its bordercolor should turn red.
}
我不知道该怎么做。请帮忙?