C# 如何判断textbox.text1为空

2024-12-18 23:19:59
推荐回答(3个)
回答1:

if(textbox1.text.Trim()==String.Empty)
{
Message.Show("空的哦!");
this.Close();//这是关闭当前窗口了哦
//return;//是返回哦。不再运行下面的代码
}

回答2:

if(TextBox1.Text==string.Empty)
{
MessageBox.Show("TextBox1不能为空");
this.Close();
}

回答3:

TextBox1.Text.Length<1
或TextBox1.Text=""