当前位置: 网学 > 编程文档 > JSP > 正文

在非主线程中创建窗口的方法

来源:Http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 12/10/17
下载{$ArticleTitle}原创论文样式
;         g_hInst, 
                0);
}


DWORD CreateThread(PVOID pArg)
{
    CreateWnd();
    return 0;
}


int WINAPI WinMain(    HINSTANCE hInstance,
                    HINSTANCE hPrevInstance,
                    LPTSTR    lpCmdLine,
                    int       nCmdShow)
{
     // TODO: Place code here.
    
    g_hInst = hInstance;

    HANDLE hThrd = CreateThread(NULL,0,CreateThread,NULL,0,NULL);
    CloseHandle(hThrd);

    //The message loop    
    MSG msg;
    while(GetMessage(&msg,NULL,0,0))
    {
        TranslateMessage(&msg);
        DispatchMessage(&msg);
    }

    return 0;
}

    我们似乎什么都没见到,只是窗口一闪,啥都没了.因为g_hWnd为全局变量,我们的理智告诉我们,在主线程没有退出之前,g_hWnd是不会销毁的.而用断点调试,将会发现在WndProc函数中只能接收WM_CREATE及以后一些消息,之后的再也收不到了,特别是WM_PAINT似乎就凭空消失了!那么,代码什么都没变更,只是移动到了分线程中,为何会出现这个问题呢? [Page]
    
    一切似乎很简单,在MSDN中我们找到了答案(原文见:http://support.microsoft.com/kb/90975/en-us):
    
    In a multithreaded application, any thread can call the CreateWindow() API to create a window. There are no restrictions on which thread(s) can create windows. 

It is important to note that the message loop and window procedure for the window must be in the thread that created the window. If a different thread creates the window, the window won’t get messages from DispatchMessage(), but will get messages from other sources. Therefore, the window will appear but won’t show activation or repaint, cannot be moved, won’t receive mouse messages, and so on.

    该段话大意是:窗口在任何线程中都可以创建,但消息循环必须要和创建窗口在同一线程,否则窗口将无法从DispatchMessage()获取任何消息!
    
    原来如此,最重要是这么一句:It is important to note that the message loop and window procedure for the window must be in the thread that created the window.
    
    好吧,那么我们在支线程中放置消息循环代码,看看是什么结果吧:

 

#include \"windows.h\"

HWND g_hWnd = NULL;
HINSTANCE g_hInst;


LRESULT WndProc(HWND hWnd,UINT wMsg,WPARA

  • 下一篇资讯: JS 实现倒计时代码
  • 网学推荐

    免费论文

    原创论文

    浏览:
    设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
    版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
    Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
    湘ICP备09003080号