正在验证带有按钮的文本框

本文关键字:文本 按钮 验证 | 更新日期: 2023-09-27 18:06:26

我有一个按钮和一个文本框,我想检查文本框验证是否正确,当我点击按钮时正确通过。否则,用户应该收到一个警告,再次检查他在文本框中所写的内容。

正在验证带有按钮的文本框

    public bool Validations()
    {
        if (string.IsNullOrEmpty(Textbox.Text))
        {
            MessageBox.Show(" Error ");
            return false;
        }
        else
        {
            // your code 
        }
    }

private void button1_Click(对象发送者,EventArgs e)

{

        if (!Validations())
            return;
    } 

尝试使用ErrorProvider。这可能有帮助。

private void button1_Click(object sender, EventArgs e)
{
    // check if something is wrong
    errorProvider1.SetError(textBox1,"Some Error!");
}