如何检查某些字段是否不完整?
我想要它,以便每当有人点击我的按钮“ADD?”如果未正确填写必填字段,将显示消息框。
答案 0 :(得分:2)
使用errorprovider component,或者只检查输入文本长度是否为0抛出消息
If (myTextBox.Text.Length == 0)
{
//throw up message box
MessageBox.Show("You forgot to fill in this field!");
return;
}
答案 1 :(得分:2)
在“添加”按钮的事件处理程序中,只需检查“字段”是否已填写,如果没有,则不要继续:
void buttonAdd_Click(object sender, EventArgs e)
{
if (string.IsNullOrWhiteSpace(textBoxField.Text))
{
// Show message?
MessageBox.Show(....);
return; // Don't process
}
// Field has a value, do your thing here...
}