标签: winforms c#-4.0
我有一个带有ErrorProvider的WinForm,我这样设置
errorProvider1.SetError(textBox1, "Error description");
如何像在Form.IsValid()中一样检查所有数据是否有效?
我必须对我验证的每个控件使用errorProvider1.GetError()吗?还有更好的方法吗?
答案 0 :(得分:2)
你不必自己创造这样的东西。 请参阅此问题WinForm UI Validation