Ejemplo n.º 1
0
        public bool UpdateInput()
        {
            bool usedInput = false;

            if (NextFocusAction())
            {
                FocusNext();
                usedInput = true;
            }
            if (PrevFocusAction())
            {
                FocusPrev();
                usedInput = true;
            }

            if (!usedInput)
            {
                usedInput = RootComponent.UpdateInput();
            }

            return(usedInput);
        }