if(textbox.Text.Trim()==""){ MessageBox.Show(" 不能没有内容");}
你好,一般这种验证都是在button提交事件里去做的:
if(string.IsNullOrEmpty(textbox.text.Trim())){ MessageBox.Show("不能为空!");}
不明白你说的提示不对是哪不对,可以贴出代码吗?
if(string.IsNullOrEmpty(textbox.text))