我是新手,刚刚开始试用Windows Forms,我设法提出以下代码来检查空文本框:
public partial class form : Form
{
private string results;
}
private void button1_Click(object sender, EventArgs e)
{
results = "";
results += textBox1.Text;
results += textBox2.Text;
...
If (textBox1.Text == "") //I want to take this 'if' statement and turn it into a separate method called checkEmptyFields()
{
MessageBox.Show("This field cannot be left blank.");
textBox1.Focus();
}
else { MessageBox.Show(results, "This is the results window");}
}
现在,我的问题出现了,当我有10个以上的文本框(例如名字,姓氏,地址,电子邮件等)时,我将需要我的程序来检查他们的字段是否已空。我如何使用'if'语句并将其转换为另一种单独的方法,例如 checkEmptyFields()?
当我按下按钮1提交表单时,我希望checkEmptyFields()触发检查文本框中的任何空字段并显示错误消息以警告用户。