清除表单C#上的所有控件的最佳方式是什么?

前端之家收集整理的这篇文章主要介绍了清除表单C#上的所有控件的最佳方式是什么?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我记得看到有人在一段时间之前就问这个问题,但我做了一个搜索,找不到任何东西.

我试图想出最清晰的方式将表单上的所有控件都清除回默认值(例如,清除文本框,取消选中复选框).

你会怎么样呢?

解决方法

到目前为止我所提到的是这样的:
public static class extenstions
{
    private static Dictionary<Type,Action<Control>> controldefaults = new Dictionary<Type,Action<Control>>() { 
            {typeof(TextBox),c => ((TextBox)c).Clear()},{typeof(CheckBox),c => ((CheckBox)c).Checked = false},{typeof(ListBox),c => ((ListBox)c).Items.Clear()},{typeof(RadioButton),c => ((RadioButton)c).Checked = false},{typeof(GroupBox),c => ((GroupBox)c).Controls.ClearControls()},{typeof(Panel),c => ((Panel)c).Controls.ClearControls()}
    };

    private static void FindAndInvoke(Type type,Control control) 
    {
        if (controldefaults.ContainsKey(type)) {
            controldefaults[type].Invoke(control);
        }
    }

    public static void ClearControls(this Control.ControlCollection controls)
    {
        foreach (Control control in controls)
        {
             FindAndInvoke(control.GetType(),control);
        }
    }

    public static void ClearControls<T>(this Control.ControlCollection controls) where T : class 
    {
        if (!controldefaults.ContainsKey(typeof(T))) return;

        foreach (Control control in controls)
        {
           if (control.GetType().Equals(typeof(T)))
           {
               FindAndInvoke(typeof(T),control);
           }
        }    

    }

}

现在你可以像这样调用扩展方法ClearControls:

private void button1_Click(object sender,EventArgs e)
    {
        this.Controls.ClearControls();
    }

编辑:我刚刚添加了一个通用的ClearControls方法,将清除该类型的所有控件,可以这样调用

this.Controls.ClearControls<TextBox>();

目前它只会处理顶级控件,而不会通过组框和面板进行挖掘.

原文链接:https://www.f2er.com/html/230712.html

猜你在找的HTML相关文章