Get All Web Controls of a Specific Type on a Page

后端 未结 8 1873
忘掉有多难
忘掉有多难 2020-12-01 03:58

I have been pondering how I can get all controls on a page and then perform a task on them in this related question:

How to Search Through a C# DropDownList Programm

8条回答
  •  北荒
    北荒 (楼主)
    2020-12-01 04:10

    Check my previous SO answer.

    Basically, the idea is to wrap the recursion of iterating through the controls collection using :

    private void GetControlList(ControlCollection controlCollection, List resultCollection)
    where T : Control
    {
        foreach (Control control in controlCollection)
        {
            //if (control.GetType() == typeof(T))
            if (control is T) // This is cleaner
                resultCollection.Add((T)control);
    
            if (control.HasControls())
                GetControlList(control.Controls, resultCollection);
        }
    }
    

    and to use it :

    List allControls = new List();
    GetControlList(Page.Controls, allControls )
    foreach (var childControl in allControls )
    {
    //     call for all controls of the page
    }
    

    [Edited 11/26/2013]: here is a more elegant way to reach this goal. I wrote two extensions methods that can walk the control tree in both directions. The methods are written in a more Linq way as it produces an enumerable:

    /// 
    /// Provide utilities methods related to  objects
    /// 
    public static class ControlUtilities
    {
        /// 
        /// Find the first ancestor of the selected control in the control tree
        /// 
        /// Type of the ancestor to look for
        /// The control to look for its ancestors
        /// The first ancestor of the specified type, or null if no ancestor is found.
        public static TControl FindAncestor(this Control control) where TControl : Control
        {
            if (control == null) throw new ArgumentNullException("control");
    
            Control parent = control;
            do
            {
                parent = parent.Parent;
                var candidate = parent as TControl;
                if (candidate != null)
                {
                    return candidate;
                }
            } while (parent != null);
            return null;
        }
    
        /// 
        /// Finds all descendants of a certain type of the specified control.
        /// 
        /// The type of descendant controls to look for.
        /// The parent control where to look into.
        /// All corresponding descendants
        public static IEnumerable FindDescendants(this Control parent) where TControl : Control
        {
            if (parent == null) throw new ArgumentNullException("control");
    
            if (parent.HasControls())
            {
                foreach (Control childControl in parent.Controls)
                {
                    var candidate = childControl as TControl;
                    if (candidate != null) yield return candidate;
    
                    foreach (var nextLevel in FindDescendants(childControl))
                    {
                        yield return nextLevel;
                    }
                }
            }
        }
    }
    

    Thanks to the this keyword, these methods are extensions methods and can simplify the code.

    For example, to find all DropDownList in the page, you can simply call:

    var allDropDowns = this.Page.FindControl();
    

    Because of the use of the yield keyword, and because Linq is smart enough to defer execution of the enumeration, you can call (for example):

    var allDropDowns = this.Page.FindDescendants();
    var firstDropDownWithCustomClass = allDropDowns.First(
        ddl=>ddl.CssClass == "customclass"
        );
    

    The enumeration will stop as soon as the predicate in the First method is satisfied. The whole control tree won't be walked.

提交回复
热议问题