如何在没有鼠标悬停在错误提供程序上的情况下显示错误?

时间:2013-08-29 18:52:14

标签: c# winforms errorprovider

如何在没有鼠标悬停在错误提供程序上的情况下显示错误?enter image description here

this.errorProvider1.SetError(textBox1, "This field must contain text");

1 个答案:

答案 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);
    }