3

如何在没有鼠标悬停在错误提供程序上的情况下显示错误?在此处输入图像描述

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

1 回答 1

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);
    }
于 2013-08-30T07:11:57.100 回答