BaseWPFHelpers.Helpers.FindVisualElement C# (CSharp) Method

FindVisualElement() public static method

Helper to find the given named element down in the visual tree
public static FindVisualElement ( Visual parent, String ElementName ) : FrameworkElement
parent Visual
ElementName String
return System.Windows.FrameworkElement
        public static FrameworkElement FindVisualElement(Visual parent, String ElementName)
        {
            return SingleFindDownInTree(parent, new FinderMatchName(ElementName));
        }