ComponentFactory.Krypton.Navigator.VisualPopupPage.ProcessTabKey C# (CSharp) Méthode

ProcessTabKey() protected méthode

Selects the next available control and makes it active.
protected ProcessTabKey ( bool forward ) : bool
forward bool true to cycle forward; otherwise false.
Résultat bool
        protected override bool ProcessTabKey(bool forward)
        {
            // Find the control in our hierarchy that has the focus
            Control focus = GetControlWithFocus(this);

            // If nothing has the focus then we cannot perform processing
            if (focus != null)
                return TabToNextControl(focus, forward);
            else
                return true;
        }