mfc中ontimer的问题
voidChomeworkOpenGLView::OnChar(UINTnChar,UINTnRepCnt,UINTnFlags){switch(nChar){case'...
void ChomeworkOpenGLView::OnChar(UINT nChar, UINT nRepCnt, UINT nFlags)
{
switch(nChar){
case '1':
SetTimer(1,45,NULL);
}
CView::OnChar(nChar, nRepCnt, nFlags);
}
void ChomeworkOpenGLView::OnTimer(UINT_PTR nIDEvent){
// TODO: Add your message handler code here and/or call default
warms--;
Invalidate(FALSE); //更新显示
//}
CView::OnTimer(nIDEvent);
}
这段代码调用settimer后为什么无法进入ontimer,在线等 谢谢解答~~~ 展开
{
switch(nChar){
case '1':
SetTimer(1,45,NULL);
}
CView::OnChar(nChar, nRepCnt, nFlags);
}
void ChomeworkOpenGLView::OnTimer(UINT_PTR nIDEvent){
// TODO: Add your message handler code here and/or call default
warms--;
Invalidate(FALSE); //更新显示
//}
CView::OnTimer(nIDEvent);
}
这段代码调用settimer后为什么无法进入ontimer,在线等 谢谢解答~~~ 展开
- 你的回答被采纳后将获得:
- 系统奖励15(财富值+成长值)+难题奖励30(财富值+成长值)
1个回答
展开全部
给你段代码自己看着修改,非常简单的。
void CExample44Dlg::OnBnClickedOk()
{
// TODO: Add your control notification handler code here
// 启动ID为1的定时器,定时时间为1秒
SetTimer(1, 1000, NULL);
// 启动ID为2的定时器,定时时间为2秒
SetTimer(2, 2000, NULL);
//CDialogEx::OnOK();
}
void CExample44Dlg::OnTimer(UINT_PTR nIDEvent)
{
// TODO: Add your message handler code here and/or call default
switch (nIDEvent)
{
case 1:
// 如果m_nData1已经达到10,则销毁ID为1的定时器
if (10 == m_nData1)
{
KillTimer(1);
break;
}
// 刷新编辑框IDC_EDIT1的显示
SetDlgItemInt(IDC_EDIT1, ++m_nData1);
break;
case 2:
// 如果m_nData2已经达到5,则销毁ID为2的定时器
if (5 == m_nData2)
{
KillTimer(2);
break;
}
// 刷新编辑框IDC_EDIT2的显示
SetDlgItemInt(IDC_EDIT2, ++m_nData2);
default:
break;
}
CDialogEx::OnTimer(nIDEvent);
}
void CExample44Dlg::OnBnClickedOk()
{
// TODO: Add your control notification handler code here
// 启动ID为1的定时器,定时时间为1秒
SetTimer(1, 1000, NULL);
// 启动ID为2的定时器,定时时间为2秒
SetTimer(2, 2000, NULL);
//CDialogEx::OnOK();
}
void CExample44Dlg::OnTimer(UINT_PTR nIDEvent)
{
// TODO: Add your message handler code here and/or call default
switch (nIDEvent)
{
case 1:
// 如果m_nData1已经达到10,则销毁ID为1的定时器
if (10 == m_nData1)
{
KillTimer(1);
break;
}
// 刷新编辑框IDC_EDIT1的显示
SetDlgItemInt(IDC_EDIT1, ++m_nData1);
break;
case 2:
// 如果m_nData2已经达到5,则销毁ID为2的定时器
if (5 == m_nData2)
{
KillTimer(2);
break;
}
// 刷新编辑框IDC_EDIT2的显示
SetDlgItemInt(IDC_EDIT2, ++m_nData2);
default:
break;
}
CDialogEx::OnTimer(nIDEvent);
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询