前天我也回答了同意的问题,我把回答直接拿过来吧
我可以这样理解吗,就是你在点击保存的时候验证多个文本框的非空?
那你在保存之前写个方法验证就行了吧
.....save() //保存方法
{
if(TextBox.Text == "")
{
//定位到空文本框的地方
return false;
}
//后面写保存的代码,前面的判断也可以单独写一个方法
}
简而言之, 假设有一个GroupBox对象gbx
TextBox tbx = null;
foreach(var c in gbx.Controls) {
if((tbx = c as TextBox) != null) {
if(string.IsNullOrEmpty(tbx.Text)) {
//TODO: 为空怎么办
}
else {
//TODO: 不为空又怎么办
}
}
}
用Controls属性
foreach (System.Windows.Forms.Control control in this.groupBox2.Controls)//遍历groupBox2上的所有控件
{
if (control is System.Windows.Forms.PictureBox)
{
System.Windows.Forms.TextBox tb = (System.Windows.Forms.TextBox)control;
//判断
}
}