AfxGetMainWnd返回NULL

来源:互联网 发布:wireshark 数据帧 编辑:程序博客网 时间:2024/05/05 17:46

一、

关于在线程中使用AfxGetMainWnd()出错的问题.
AfxGetMainWnd()得到的是当前线程的主窗口(如果有的话).
因为主窗口是属于主线程的,所以想得到主窗口HWND值,
只能在主线程中用AfxGetMainWnd(),但要不是处在主线程中,
AfxGetMainWnd()可能是从当前线程查询主窗口的。但好像
AfxGetMainWnd()不能跨线程,故要出错.要想在线程中使用
主窗口的HWND值,可以把主窗口的HWND值传给线程.也
可以用AfxGetApp()先取得主线程,再通过CWinThread的类成
员m_pMainWnd获得主窗口(AfxGetApp()->m_pMainWnd->m_hWnd)
If AfxGetMainWnd is called from the application's primary thread, 
it returns the application'smain window according to the above rules. 
If the function is called from a secondary thread in the application, 
the function returns the main window associated with the thread that made the call.
今天好像找到原因了~ 我那个线程是用CreateThread创建的,而 CreateThread是由
操作系统提供的接口,在 CreateThread创建的线程中用MFC的函数AfxGetMainWnd()会有问题.
摘自:BBS 水木清华站∶精华区
如果用MFC编程,不要用CreateThread,如果只是使用Runtime Library,用 
_BegingThread,总之,不要轻易使用CreateThread 
这是因为在MFC和RTL中的函数有可能会用到些它们所封装的公用变量,也就是 
说AfxBeginThread和_BeginThread都有自己的启动代码是CreateThread所没有的 
在用CreateThread所创建的线程中使用MFC的类和RTL函数就有可能出现问题 
如果你是用汇编编写win32程序并且在线程函数中也不调用MFC和RTL的函数,那用 
CreateThread就没问题,或者你虽然是用C写线程函数,但你很小心没调用RTL函数 
也不会有问题 
CreateThread是由操作系统提供的接口,而AfxBeginThread和_BeginThread则是编译 
器对它的封装
二、项目总结
1、环境描述:
在主线程中创建子线程,在子线程中创建Window标准窗口,然后在子线程中想创建非模态对话框,所以有如下代码:
#if 1m_pMainWnd =  CWnd::AfxGetMainWnd(hWnd);if ( !m_pMainWnd ){L_ERROR("AfxGetMainWnd err(%d)\n", GetLastError());return FALSE;}#endifm_TipDlg = new CDlgTip();if ( !m_TipDlg ){L_ERROR("new CDialog err(%d)\n", GetLastError());return FALSE;}if ( FALSE == m_TipDlg->Create(MAKEINTRESOURCE(IDD_DIALOG_TIP), m_pMainWnd) ){L_ERROR("Create CDialog err(%d)\n", GetLastError());delete m_TipDlg;m_TipDlg = NULL;return FALSE;}




调用AfxGetMainWnd却返回NULL。
查看AfxGetMainWnd,代码如下:
_AFXWIN_INLINE CWnd* AFXAPI AfxGetMainWnd(){ CWinThread* pThread = AfxGetThread();return pThread != NULL ? pThread->GetMainWnd() : NULL; }

后来直接调用AfcGetThread也是返回了NULL,这是为什么呢?
2、解决方法:
#if 1m_pMainWnd =  CWnd::FromHandle(hWnd);if ( !m_pMainWnd ){L_ERROR("AfxGetMainWnd err(%d)\n", GetLastError());return FALSE;}#endif


原创粉丝点击