MFC中使用多个timer定时器

时间:2021-11-13 00:14:36

1,在MFC中添加WM_TIMER消息处理函数会生成

void CFaceDetectDlg::OnTimer(UINT_PTR nIDEvent)
{
CDialogEx::OnTimer(nIDEvent);
}

在需要定时的地方使用

 SetTimer(1,10,NULL);
SetTimer(2,100,NULL);
SetTimer(3,200,NULL);

设置定时其开始定时,设定自己需要的时间间隔

其中第一个参数1,2,3,为定时其的ID

然后再OnTimer()函数中处理每个定时器事件

void CFaceDetectDlg::OnTimer(UINT_PTR nIDEvent)
{
// TODO: Add your message handler code here and/or call default
switch(nIDEvent)//nIDEvent 为定时器事件ID,1,2,3
{
case 1:
{}
break;
case 2:
{}
break;
}
}