Пример #1
0
        protected virtual CBResult OnClick(IupHandle sender)
        {
            IupEventArgs ea = new IupEventArgs();

            if (CBClick != null)
            {
                CBClick(this, ea);
            }
            return(ea.Result);
        }
Пример #2
0
        protected CBResult OnDestroy(IupHandle sender)
        {
            IupEventArgs ea = new IupEventArgs();

            if (CBDestroy != null)
            {
                CBDestroy(this, ea);
            }
            return(ea.Result);
        }
Пример #3
0
        protected CBResult OnGetFocus(IupHandle sender)
        {
            IupEventArgs ea = new IupEventArgs();

            if (CBGetFocus != null)
            {
                CBGetFocus(this, ea);
            }
            return(ea.Result);
        }
Пример #4
0
        protected CBResult OnEnterWindow(IupHandle sender)
        {
            IupEventArgs ea = new IupEventArgs();

            if (CBEnterWindow != null)
            {
                CBEnterWindow(this, ea);
            }
            return(ea.Result);
        }
Пример #5
0
        protected CBResult OnHelp(IupHandle sender)
        {
            IupEventArgs ea = new IupEventArgs();

            if (CBHelp != null)
            {
                CBHelp(this, ea);
            }
            return(ea.Result);
        }
Пример #6
0
        public virtual CBResult OnClose(IupHandle sender)
        {
            IupEventArgs ea = new IupEventArgs();

            if (CBClose != null)
            {
                CBClose(this, ea);
            }
            return(ea.Result);
        }