BaseWPFHelpers.Helpers.FindDownInTree C# (CSharp) Method

FindDownInTree() public static method

Walker that looks down in the visual tree for any matching elements, typically used with Type
public static FindDownInTree ( Visual parent, IFinderMatchVisualHelper helper ) : List
parent Visual Start point in the tree to search
helper IFinderMatchVisualHelper Match Helper to use
return List
        public static List<FrameworkElement> FindDownInTree(Visual parent, IFinderMatchVisualHelper helper)
        {
            List<FrameworkElement> lst = new List<FrameworkElement>();

            FindDownInTree(lst, parent, null, helper);

            return lst;
        }

Same methods

Helpers::FindDownInTree ( List lst, DependencyObject parent, DependencyObject ignore, IFinderMatchVisualHelper helper ) : void