我正在设计一个系统,通过反射将对象映射到页面,查看字段名称和属性名称,然后尝试设置控件的值。问题是系统需要花费大量时间才能完成。我希望有人可以帮助加快这一点
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个属性
答案 0 :(得分:3)
不是循环N * M,循环属性一次,将它们放入字典中,然后在循环控件时使用该字典