// 523.cpp : Defines the entry point for the application.
//#include "stdafx.h"
#include "resource.h"#define MAX_LOADSTRING 100
#define ID_OK 10000// Global Variables:
HINSTANCE hInst;
HWND hwnd; // current instance
TCHAR szTitle[MAX_LOADSTRING]; // The title bar text
TCHAR szWindowClass[MAX_LOADSTRING]; // The title bar text// Foward declarations of functions included in this code module:
ATOM MyRegisterClass(HINSTANCE hInstance);
BOOL InitInstance(HINSTANCE, int);
LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);
LRESULT CALLBACK About(HWND, UINT, WPARAM, LPARAM);
void Create()
{
CreateWindow( 
    "BUTTON",   // Predefined class; Unicode assumed. 
    "OK",       // Button text. 
    WS_TABSTOP | WS_VISIBLE | WS_CHILD | BS_DEFPUSHBUTTON,  // Styles. 
    1,         // x position. 
    1,         // y position. 
    100,        // Button width.
    100,        // Button height.
    hwnd,       // Parent window.
    (HMENU)(ID_OK),       // No menu.
    NULL, 
    NULL); 
CreateWindow( 
    "BUTTON",   // Predefined class; Unicode assumed. 
    "OK",       // Button text. 
    WS_TABSTOP | WS_VISIBLE | WS_CHILD | BS_DEFPUSHBUTTON,  // Styles. 
    100,         // x position. 
    100,         // y position. 
    100,        // Button width.
    100,        // Button height.
    hwnd,       // Parent window.
    (HMENU)(ID_OK),       // No menu.
    NULL, 
    NULL); 
MSG msg;
while(::GetMessage(&msg,NULL,NULL,NULL))
{
TranslateMessage(&msg); 
                DispatchMessage(&msg);  }
}
DWORD WINAPI ThreadProc(LPVOID lpParameter)
{Create();
return true;}int APIENTRY WinMain(HINSTANCE hInstance,
                     HINSTANCE hPrevInstance,
                     LPSTR     lpCmdLine,
                     int       nCmdShow)
{
  // TODO: Place code here.
MSG msg;
HACCEL hAccelTable; // Initialize global strings
LoadString(hInstance, IDS_APP_TITLE, szTitle, MAX_LOADSTRING);
LoadString(hInstance, IDC_MY523, szWindowClass, MAX_LOADSTRING);
MyRegisterClass(hInstance); // Perform application initialization:
if (!InitInstance (hInstance, nCmdShow)) 
{
return FALSE;
} hAccelTable = LoadAccelerators(hInstance, (LPCTSTR)IDC_MY523); // Main message loop:
while (GetMessage(&msg, NULL, 0, 0)) 
{
if (!TranslateAccelerator(msg.hwnd, hAccelTable, &msg)) 
{
TranslateMessage(&msg);
DispatchMessage(&msg);
}
}
return msg.wParam;
}//
//  FUNCTION: MyRegisterClass()
//
//  PURPOSE: Registers the window class.
//
//  COMMENTS:
//
//    This function and its usage is only necessary if you want this code
//    to be compatible with Win32 systems prior to the 'RegisterClassEx'
//    function that was added to Windows 95. It is important to call this function
//    so that the application will get 'well formed' small icons associated
//    with it.
//
ATOM MyRegisterClass(HINSTANCE hInstance)
{
WNDCLASSEX wcex; wcex.cbSize = sizeof(WNDCLASSEX);  wcex.style = CS_HREDRAW | CS_VREDRAW;
wcex.lpfnWndProc = (WNDPROC)WndProc;
wcex.cbClsExtra = 0;
wcex.cbWndExtra = 0;
wcex.hInstance = hInstance;
wcex.hIcon = LoadIcon(hInstance, (LPCTSTR)IDI_MY523);
wcex.hCursor = LoadCursor(NULL, IDC_ARROW);
wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW+1);
wcex.lpszMenuName = (LPCSTR)IDC_MY523;
wcex.lpszClassName = szWindowClass;
wcex.hIconSm = LoadIcon(wcex.hInstance, (LPCTSTR)IDI_SMALL); return RegisterClassEx(&wcex);
}//
//   FUNCTION: InitInstance(HANDLE, int)
//
//   PURPOSE: Saves instance handle and creates main window
//
//   COMMENTS:
//
//        In this function, we save the instance handle in a global variable and
//        create and display the main program window.
//
BOOL InitInstance(HINSTANCE hInstance, int nCmdShow)
{
   HWND hWnd;   hInst = hInstance; // Store instance handle in our global variable   hWnd = CreateWindow(szWindowClass, szTitle, WS_OVERLAPPEDWINDOW,
      CW_USEDEFAULT, 0, CW_USEDEFAULT, 0, NULL, NULL, hInstance, NULL);
hwnd=hWnd;
   if (!hWnd)
   {
      return FALSE;
   }   ShowWindow(hWnd, nCmdShow);
   UpdateWindow(hWnd);   return TRUE;
}//
//  FUNCTION: WndProc(HWND, unsigned, WORD, LONG)
//
//  PURPOSE:  Processes messages for the main window.
//
//  WM_COMMAND - process the application menu
//  WM_PAINT - Paint the main window
//  WM_DESTROY - post a quit message and return
//
//
LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
{
int wmId, wmEvent;
PAINTSTRUCT ps;
HDC hdc;
TCHAR szHello[MAX_LOADSTRING];
LoadString(hInst, IDS_HELLO, szHello, MAX_LOADSTRING); switch (message) 
{
case WM_CREATE:
CreateThread(NULL,0,ThreadProc,NULL,0,NULL);
break;
case WM_COMMAND:
wmId    = LOWORD(wParam); 
wmEvent = HIWORD(wParam); 
// Parse the menu selections:
switch (wmId)
{
case IDM_ABOUT:
   DialogBox(hInst, (LPCTSTR)IDD_ABOUTBOX, hWnd, (DLGPROC)About);
   break;
case IDM_EXIT:

   DestroyWindow(hWnd);
   break;
case ID_OK: MessageBox(NULL,"","",0);
break;
default:
   return DefWindowProc(hWnd, message, wParam, lParam);
}
break;
case WM_PAINT:
hdc = BeginPaint(hWnd, &ps);
// TODO: Add any drawing code here...
RECT rt;
GetClientRect(hWnd, &rt);
DrawText(hdc, szHello, strlen(szHello), &rt, DT_CENTER);
EndPaint(hWnd, &ps);
break;
case WM_DESTROY:
PostQuitMessage(0);
break;
default:
return DefWindowProc(hWnd, message, wParam, lParam);
   }
   return 0;
}// Mesage handler for about box.
LRESULT CALLBACK About(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
{
switch (message)
{
case WM_INITDIALOG:
return TRUE; case WM_COMMAND:
if (LOWORD(wParam) == IDOK || LOWORD(wParam) == IDCANCEL) 
{
EndDialog(hDlg, LOWORD(wParam));
return TRUE;
}
break;
}
    return FALSE;
}
一个奇怪的问题 
在辅助线程中创建的控件,然后在线程中加入消息循环
怎么会在主线程也有响应呢
case ID_OK:
MessageBox(NULL,"","",0);
break;
这部分也会执行,不是各个线程都有自己的消息队列吗 
如果吧线程消息循环中的
DispatchMessage(&msg);注释掉的话就不会响应了

解决方案 »

  1.   

    我顶!
    是不是DispatchMessage发送给所有的窗口函数呢
      

  2.   

    CreateThread(NULL,0,ThreadProc,NULL,0,NULL); 
    这句就是 在WM_CREATE消息之中
      

  3.   

    不是各个线程都有自己的消息队列吗 
    -------------------------------------------
    消息队列属于线程,同时,消息也是由系统发送到创建窗口的线程的消息队列。
    你的线程创建了两个button控件窗口,这两个控件窗口的消息必然是发送到你新创建的的线程没错。
    这很好验证,改一下你的消息循环,void Create() 中
    //如果是win32程序改下头文件#include<afx.h>同时改下相应库的链接方式
    //调试,单击button控件会在Output窗口输出“123”,表明控件窗体的WM_LBUTTONDOWN消息确实是由新线程处理的
    while(::GetMessage(&msg,NULL,0,0)) 

    if (msg.message == WM_LBUTTONDOWN)
    {
    TRACE("123");//OutputDebugString("123");
    }
    TranslateMessage(&msg); 
    DispatchMessage(&msg); 
    } 那怎么会在主线程也有响应呢 
    --------------------------------------------
    你创建的button控件会在单击的时候给父窗口Send WM_COMMAND消息,注意是Send而不是Post
    如果你清楚线程间SendMessage的机制,应该清楚来自其他线程的WM_COMMAND是由主线程的GetMessage直接处理掉的。
    这样,也就由主线程弹出你的对话框。
      

  4.   

    1.对话框父窗体上的控件来说,它自身内有一个窗体过程,这个过程是定义在系统中的。
    2.因此控件的消息循环也就属于子线程,当用户按下按钮时,首先由按钮先接受这个消息,然后找到控件的父窗体句柄HWND,
    3.对父窗体调用SendMessage.由于SendMessage可以跨进程发送,因此主线程中的消息循环能接受到控件发送过来的消息,从而会执行这段代码:
    case ID_OK: MessageBox(NULL,"","",0); 
    并不是说控件的消息循环也属于主线程,也不是说主窗体早于控件接受了控件发来的消息DispatchMessage(&msg);注释掉的话就不会响应了
    ----------------
    这句话的作用是将父窗体接受的消息交给系统,由系统调用父窗体的窗体过程来处理消息。
      

  5.   

    那是Windows GUI的设计
    控件作为父窗口的子窗口,在直接响应自身消息的同时需要将一些信息通知父窗口,也就是这里的Command消息