1.DevExpress
foreach (Control cntr in this.pal_OrderType.Controls) { if (typeof(DevExpress.XtraEditors.CheckButton) == cntr.GetType()) { ((DevExpress.XtraEditors.CheckButton)cntr).Checked = false; } }
2.DevComponents
foreach (System.Windows.Forms.Control cntr in this.panelEx2.Controls) { if (cntr is DevComponents.DotNetBar.Controls.TextBoxX) { cntr.Text = ""; cntr.Tag = ""; } }
浙公网安备 33010602011771号