BaseWPFHelpers.Helpers.FindElementsOfType C# (CSharp) Method

FindElementsOfType() public static method

Simple form call that returns all elements of a given type down in the visual tree
public static FindElementsOfType ( Visual parent, Type ty ) : List
parent Visual
ty System.Type
return List
        public static List<FrameworkElement> FindElementsOfType(Visual parent, Type ty)
        {
            return FindDownInTree(parent, new FinderMatchType(ty));

        }