CAA中创建按钮回调函数

在BuildGraph()中写;

//创建窗口关闭的消息相应
AddAnalyseNotificationCB(_pDlg,
_pDlg->GetWindCloseNotification(),
(CATCommandMethod)&作用域::ActionCancelFunc,
NULL);
//创建窗口关闭的消息相应
AddAnalyseNotificationCB(_pDlg,
_pDlg->GetDiaCANCELNotification(),
(CATCommandMethod)&作用域::ActionCancelFunc,
NULL);
//创建窗口关闭的消息相应
AddAnalyseNotificationCB(_pDlg,
_pDlg->GetDiaOKNotification(),
(CATCommandMethod)&作用域::ActionOKFunc,
NULL);

//其中_pDlg是窗口的指针,需预先声明,CMD.CPP需要和Dlg关联好,析构函数中也要初始化好

//响应函数,具体实现什么需要自己去写

posted @ 2021-06-01 10:45  Breadss  阅读(258)  评论(0编辑  收藏  举报