摘要:
private void ClearText(Control cParent) { foreach (Control c in cParent.Controls) { if (c.HasControls()) { ClearText(c); } else { if (c is TextBox) { ((TextBox)c).Text = string.Empty; } } } } 阅读全文
posted @ 2012-03-15 11:21
郭文斌
阅读(138)
评论(0)
推荐(0)
2012年3月15日