sdk程序
在setparent之前,edit控件可以向父窗口发送EN_CHANGE通知,但setparent一个新的父窗口之后,edit控件不向新的父窗口发送EN_CHANGE通知,如果把edit换成button,倒是正常,可以收到BN_CLICKED.
不光EN_CHANGE,任何通知消息都没有。

解决方案 »

  1.   

    我已找到答案!
    An edit, list box, or combo box control sends notifications to the original parent window even after SetParent has been used to change the control's parent. A button control sends notifications to the new parent after SetParent has been used to change its parent. Edit, list box, and combo box controls keep a private copy of the window handle of the parent at the time of creation. This handle is not changed when SetParent is used to change the control's parent. Consequently, the notifications (EN_*, LBN_*, and CBN_* notifications) go to the original parent. Note that WM_PARENTNOTIFY messages go to the new parent and GetParent() returns the new parent. If it is required that notifications go to the new parent window, code must be added to the old parent's window procedure to pass on the notifications to the new parent. For example:    case WM_COMMAND:
         hwndCtl = LOWORD(lParam);     // If notification is from a control and the control is no longer this
         //   window's child, pass it on to the new parent.
         if (hwndCtl && !IsChild(hWnd, hwndCtl))
             SendMessage(GetParent(hwndCtl), WM_COMMAND, wParam,  lParam);
         else Do normal processing;

    Button controls send notifications to the new parent after SetParent has been used to change the parent. 
      

  2.   

    http://support.microsoft.com/default.aspx?scid=KB;EN-US;Q104069
      

  3.   

    答案用setparent edit wm_command作关键词在google搜到,去他娘的百度