0

情况(不是傻瓜):

我有许多从一个父级继承的用户控件。

在父级Page_Load上,我想从子级 UserControl 中找到一个特定控件并将其添加到Attributes.

问题是我从来不知道孩子的结构UserControl

我尝试使用递归方法通过 id 查找控件:

public static Control FindControlRecursive(Control root, string id)
{             
    if (root.ID == id)
        return root;

    return root.Controls.Cast<Control>()
       .Select(c => FindControlRecursive(c, id))
       .FirstOrDefault(c => c != null);
}

这就是我从父母那里称呼它的方式:

Page page = HttpContext.Current.Handler as Page;
var mycontrol = FindControlRecursive(page, "id_x");
if (mycontrol != null)
{
     string test = "";
}

但我不工作。我真的不确定这是否是实现我目标的好方法。请,我想知道您是否有任何建议或更好的方法。您的帮助将不胜感激。

4

1 回答 1

1

如下更改您的查找方法

private Control FindControlRecursive(Control root, string id)
{
    if (root.ID == id)
        return root;

    foreach (Control control in root.Controls)
    {
        Control found = RecursiveFindControl(control, id);
        if (found != null)
            return found;
    }

    return null;
}
于 2013-09-15T16:03:29.837 回答