BaseWPFHelpers.Helpers.FindFocusedElement C# (CSharp) Method

FindFocusedElement() public static method

Helper to find the currently focused element
public static FindFocusedElement ( Visual parent ) : FrameworkElement
parent Visual
return System.Windows.FrameworkElement
        public static FrameworkElement FindFocusedElement(Visual parent)
        {
            return SingleFindInTree(parent, new FinderMatchFocused());
        }