摘要:
主窗口指针保存在CWinThread::m_pMainWnd中,可以先调用AfxGetApp函数获得应用程序的指针,然后通过应用程序的指针获得其主窗口的指针。 //获得应用程序指针 CMy1_2App* pApp = (CMy1_2App*)AfxGetApp(); //获得主窗口指针 CWnd* pMainWnd = pApp->m_pMainWnd; CString strText = _T(""); strText.Format("pMainWnd = 0x%x\nthis = 0x%x\n", pMainWnd, this); AfxMes 阅读全文
摘要:
//获得当前窗口的句柄 HWND hWnd = GetSafeHwnd(); //通过HWND获得CWnd指针 CWnd *pWnd = CWnd::FromHandle(hWnd); CString strText = _T(""); strText.Format("pWnd = 0x%X\nthis = 0x%X\n", pWnd, this); AfxMessageBox(strText);1、GetSafeHwnd方法:该函数获得窗口对象的窗口句柄。Returns the window handle for a window. Returns N 阅读全文