Habanero.Faces.Win.ControlMapperStrategyWin.GetPreviousControl C# (CSharp) Method

GetPreviousControl() private static method

private static GetPreviousControl ( Control parentControl, Control currentControl ) : Control
parentControl System.Windows.Forms.Control
currentControl System.Windows.Forms.Control
return System.Windows.Forms.Control
        private static Control GetPreviousControl(Control parentControl, Control currentControl)
        {
            return parentControl.GetNextControl(currentControl, false);
        }
    }