foreach (Control control in this.Controls)
{
if (control is TextBox)
{
TextBox tb = (TextBox)control ;
tb.Text = String.Empty ;
}
}
评论列表
文章目录