CPP文件消息映射中
ON_WM_TIMER( )
编译时候出现如下错
error C2440: 'static_cast' : cannot convert from 'void (__thiscall CDlgConfigEncoder::* )(void)' to 'void (__thiscall CWnd::* )(UINT_PTR)'
把对应的timer函数声明改成
afx_msg void OnTimer(UINT_PTR nIDEvent);
定义的地方也改一下就好了