コード例 #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
ファイル: Dialog.cs プロジェクト: ventor3000/tecgraf.net
        public virtual CBResult OnClose(IupHandle sender)
        {
            IupEventArgs ea = new IupEventArgs();

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