MessageBox中第一个参数hWnd的作用

MFC好久不用就会忘记,这次用到MessageBox才注意到里面第一个参数。函数定义如下:   

int MessageBox(     

        HWND hWnd,
        LPCTSTR lpText,
        LPCTSTR lpCaption,
        UINT uType
    );

Parameters

    hWnd
        [in] Handle to the owner window of the message box to be created. If this parameter is NULL, the message box has no owner window.

 

光看含义可能不是特别明白,网上搜了一下,加上自己调试,大致总结如下:

 

NULL默认为桌面,此时弹出的消息框会与桌面上任何窗体平级,此时会在任务栏上新加一个窗口

 

如果设为父窗口,则弹出的消息框第二个会在父窗体之上,任务栏中不会有新增窗口。

你可能感兴趣的:(null,mfc,Parameters,任务)