解决方法
您可以创建自己的自定义验证功能.这可能非常天真,但不知何故它会起作用.
private bool WithErrors() { if(textBox1.Text.Trim() == String.Empty) return true; // Returns true if no input or only space is found if(textBox2.Text.Trim() == String.Empty) return true; // Other textBoxes. return false; } private void buttonSubmit_Click(object sender,EventArgs e) { if(WithErrors()) { // Notify user for error. } else { // Do whatever here... Submit } }