本文介绍了SetTimer 与 CWnd::SetTimer的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
MFC 的 CWnd::SetTimer
简单地调用 WinAPI 的 SetTimer
.
MFC's CWnd::SetTimer
calls WinAPI's SetTimer
simply.
_AFXWIN_INLINE UINT_PTR CWnd::SetTimer(UINT_PTR nIDEvent, UINT nElapse,
void (CALLBACK* lpfnTimer)(HWND, UINT, UINT_PTR, DWORD))
{ ASSERT(::IsWindow(m_hWnd)); return ::SetTimer(m_hWnd, nIDEvent, nElapse,
lpfnTimer); }
但是 SetTimer 和 CWnd::SetTimer 文档不一样.
But SetTimer and CWnd::SetTimer documents are not same.
SetTimer
:
如果 hWnd 参数不是
我刚刚演示了我可以在相同进程中使用相同的 ID 两次,并且仍然接收两个事件.
I just demonstrated I could use the same ID twice, within the same process, and still receive both events.
这篇关于SetTimer 与 CWnd::SetTimer的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!