如何验证Windows窗体应用程序中的空文本框?

时间:2016-09-17 05:11:17

标签: c# forms validation windows-forms-designer is-empty

我是新手,刚刚开始试用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()触发检查文本框中的任何空字段并显示错误消息以警告用户。

0 个答案:

没有答案