Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
大家好,我ErrorProvider在 C# 中使用,但我对它不满意。我希望它是这样的。工具提示仅出现在鼠标指针中。有什么想法吗?
ErrorProvider
我希望它是这样的:
您可以像这样使用 ErrorProvider:
errorProvider1.SetError(textBox1, "UserName is required")
如果要设置错误以响应用户操作,则在对Validating来自文本框的事件做出反应时。一旦用户输入新的数据Validated事件将被触发,此时您可以删除错误:
Validating
Validated
errorProvider1.SetError(textBox1, null)