会自动消失的消息弹窗API函数--MessageBoxTimeout

笔记:

在MFC在程序中使用, cpp中包含了以下部分,就可以调用MessageBoxTimeout了。


extern "C"
{
int WINAPI MessageBoxTimeoutA(IN HWND hWnd, IN LPCSTR lpText, IN LPCSTR lpCaption, IN UINT uType, IN WORD wLanguageId, IN DWORD dwMilliseconds);
int WINAPI MessageBoxTimeoutW(IN HWND hWnd, IN LPCWSTR lpText, IN LPCWSTR lpCaption, IN UINT uType, IN WORD wLanguageId, IN DWORD dwMilliseconds);
};
#ifdef UNICODE
#define MessageBoxTimeout MessageBoxTimeoutW
#else
#define MessageBoxTimeout MessageBoxTimeoutA
#endif
需要指出的是,Windows 2000的user32.dll没有导出这个函数。

//举例如下:

    int ret = MessageBoxTimeoutA(NULL, "倒计时?", "tishi", MB_OKCANCEL, 0, 10*1000);
    if( IDOK == ret)
    {
        ::MessageBox(NULL, "IDOK", "结果", MB_OK);
    }
    else if( IDCANCEL == ret)
    {
        ::MessageBox(NULL, "IDCANCEL", "结果", MB_OK);
    }
    else if( IDTIMEOUT == ret)
    {
        ::MessageBox(NULL, "IDTIMEOUT", "结果", MB_OK);
    }

VS2013 可以用。其他没试

猜你喜欢

转载自blog.csdn.net/qq_42095701/article/details/90021434