BaseWPFHelpers.Helpers.FindElementsOfType C# (CSharp) Метод

FindElementsOfType() публичный статический Метод

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
Результат List
        public static List<FrameworkElement> FindElementsOfType(Visual parent, Type ty)
        {
            return FindDownInTree(parent, new FinderMatchType(ty));

        }