第一个函数是在vc6.0中用class Wizard添加的
第二个函数是在vc的类视图里用 Add Window Message Handle添加的,第二个函数里修改了标题,程序没有进入第一个函数,它们的作用分别是什么,哪个才是窗口的消息回调函数??
BOOL CTestDlg::Create(LPCTSTR lpszClassName, LPCTSTR lpszWindowName, DWORD dwStyle, const RECT& rect, CWnd* pParentWnd, UINT nID, CCreateContext* pContext)
{
// TODO: Add your specialized code here and/or call the base class
SetWindowText("在OnCreate中修改窗口标题");
return CDialog::Create(IDD, pParentWnd);
}
int CTestDlg::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (CDialog::OnCreate(lpCreateStruct) == -1)
return -1;
// TODO: Add your specialized creation code here
// SetWindowText("在OnCreate中修改窗口标题");
return 0;
}