如何在没有鼠标悬停在错误提供程序上的情况下显示错误?
this.errorProvider1.SetError(textBox1, "This field must contain text");
答案 0 :(得分:3)
可能不是最好的选择,但应该工作
if (textBox1.Text == "")
{
ErrorProvider myerror = new ErrorProvider();
ToolTip mytip = new ToolTip();
myerror.SetError(textBox1, "This field must contain text");
mytip.Show("This field must contain text", textBox1);
}