Control.ControlCollection cc = this.Controls; foreach (Control ct in cc) { if (ct is TextBox) { ct.BackColor = Color.Red; } }