win32——MessageBox
2021-05-08 06:28
标签:inf col stop blog box logs cancel ons icon win32——MessageBox 标签:inf col stop blog box logs cancel ons icon 原文地址:http://www.cnblogs.com/ming-michelle/p/7633272.html//MessageBox
//1. 应用
MessageBox(NULL, _T("内容"), _T("标题"), MB_OK);
if (IDYES == MessageBox(NULL, _T("内容"), _T("标题"), MB_OK)){}
//2. 风格:
MB_OK;
MB_OKCANCEL;
MB_CANCELTRYCONTINUE
MB_ABORTRETRYIGNORE; //终止重试忽略
MB_ICONSTOP; //停止标志
MB_ICONINFORMATION //感叹号
上一篇:win32——音乐媒体处理
下一篇:win32——消息循环 原理 函数 GetMessage PeekMessage TranslateMessage SendMessage PostMessage