private bool DoExecuteAction(TBasicAction action)
        {
            if (DesignMode || !Visible)
            {
                return(false);
            }

            if (ActiveControl != null && ActiveControl.ExecuteAction(action))
            {
                return(true);
            }

            if (this.ExecuteAction(action))
            {
                return(true);
            }

            return(false);
        }