C#遍历控件

///
        /// 遍历控件使其全都不能使用
        ///

        /// 父控件名称
        public static void ForeachCtlNo(Control P)
        {
            foreach(Control control in P.Controls)
            {
                if (control is TextBox)
                {
                   TextBox t = (TextBox)control;
                   t.Enabled = false;
                   t.Text = "";
                }
                if (control is ComboBox)
                {
                    ComboBox t = (ComboBox)control;
                    t.Enabled = false;
                    t.Text = "";
                }
            }
        }

你可能感兴趣的:(C#遍历控件)