Esempio n. 1
0
        public bool ProcessBackTabKey()
        {
            IKeyPressProcessor p = this.Parent as IKeyPressProcessor;

            if (p == null)
            {
                return(false);
            }
            return(p.ProcessBackTabKey());
        }
        public bool ProcessBackTabKey()
        {
            IKeyPressProcessor kpp = GetFocusedControl() as IKeyPressProcessor;

            if (kpp != null)
            {
                return(kpp.ProcessBackTabKey());
            }
            return(false);
        }