遍历窗体所有的textBox代码:foreach(Control c in this.Controls)//遍历所有控件 { if (c is TextBox)//判断是否是textBox控件,是则清空 { c.Text = ""; } }