摘要: protected void ClearTextBox() { Parallel.ForEach(this.Controls.Cast(), c => { if (c is TextBox) { TextBox temp = (TextBox)c; temp.Text = null; } }); } 阅读全文
posted @ 2014-01-22 19:24 天藐水瓶 阅读(122) 评论(0) 推荐(0) 编辑