Exemplo n.º 1
0
        protected virtual CBResult OnClick(IupHandle sender)
        {
            IupEventArgs ea = new IupEventArgs();

            if (CBClick != null)
            {
                CBClick(this, ea);
            }
            return(ea.Result);
        }
Exemplo n.º 2
0
        protected CBResult OnDestroy(IupHandle sender)
        {
            IupEventArgs ea = new IupEventArgs();

            if (CBDestroy != null)
            {
                CBDestroy(this, ea);
            }
            return(ea.Result);
        }
Exemplo n.º 3
0
        protected CBResult OnGetFocus(IupHandle sender)
        {
            IupEventArgs ea = new IupEventArgs();

            if (CBGetFocus != null)
            {
                CBGetFocus(this, ea);
            }
            return(ea.Result);
        }
Exemplo n.º 4
0
        protected CBResult OnEnterWindow(IupHandle sender)
        {
            IupEventArgs ea = new IupEventArgs();

            if (CBEnterWindow != null)
            {
                CBEnterWindow(this, ea);
            }
            return(ea.Result);
        }
Exemplo n.º 5
0
        protected CBResult OnHelp(IupHandle sender)
        {
            IupEventArgs ea = new IupEventArgs();

            if (CBHelp != null)
            {
                CBHelp(this, ea);
            }
            return(ea.Result);
        }
Exemplo n.º 6
0
        public virtual CBResult OnClose(IupHandle sender)
        {
            IupEventArgs ea = new IupEventArgs();

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