1

我正在设计一个通过反射将对象映射到页面的系统,方法是查看字段名称和属性名称,然后尝试设置控件的值。问题是系统需要大量时间才能完成。我希望有人可以帮助加快速度

public static void MapObjectToPage(this object obj, Control parent) {
    Type type = obj.GetType();
    foreach(PropertyInfo info in type.GetProperties(BindingFlags.Public | BindingFlags.Instance)){
        foreach (Control c in parent.Controls ) {
            if (c.ClientID.ToLower() == info.Name.ToLower()) {
                if (c.GetType() == typeof(TextBox) && info.GetValue(obj, null) != null)
                {
                    ((TextBox)c).Text = info.GetValue(obj, null).ToString();
                }
                else if (c.GetType() == typeof(HtmlInputText) && info.GetValue(obj, null) != null)
                {
                    ((HtmlInputText)c).Value = info.GetValue(obj, null).ToString();
                }
                else if (c.GetType() == typeof(HtmlTextArea) && info.GetValue(obj, null) != null)
                {
                    ((HtmlTextArea)c).Value = info.GetValue(obj, null).ToString();
                }
                //removed control types to make easier to read
            }
        // Now we need to call itself (recursive) because
        // all items (Panel, GroupBox, etc) is a container
        // so we need to check all containers for any
        // other controls
            if (c.HasControls())
            {
                obj.MapObjectToPage(c);
            }
        }
    }
}

我意识到我可以通过手动执行此操作

textbox.Text = obj.Property;

但是,这违背了制作它的目的,以便我们可以将对象映射到页面而无需所有手动设置值。

我已经确定的两个主要瓶颈是 foreach 循环,因为它循环通过每个控件/属性,并且在我的一些对象中有 20 个左右的属性

4

1 回答 1

3

不是循环 N*M,而是循环一次属性,将它们放入字典中,然后在循环控件时使用该字典

于 2013-06-06T14:14:49.460 回答