在Modeless.cpp中如何调用OnDraw()函数重画控件?
如何在Modeless.cpp中调用OnDraw()函数重画控件?是这样的,我在非模态对话框中添加了两个单选按钮:开和关.对应的添加了两个函数OnOpen()和OnClose(),OnOpen()函数调用控件类中的OnDraw()函数进行控件的重画,请问怎么实现??
请各位高手赐教!!很急,已经看了两天了!!
我的程序是这样的.(一部分)
void CModeless::OnOpen()
{
// TODO: Add your control notification handler code here
m_status=0;
OnDraw();
InvalidateControl();
}
void CModeless::OnClose()
{
// TODO: Add your control notification handler code here
m_status=1;
OnPaint();
InvalidateControl();
}
错误是:error C2065: 'OnDraw' : undeclared identifier
error C2065: 'InvalidateControl' : undeclared identifier
请各位高手帮我看看