消息框的风格
程序代码:
#include "stdafx.h" int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) { MessageBox( NULL,"我的第一个框","First Application",MB_ABORTRETRYIGNORE); MessageBox( NULL,"我的第二个框","First Application",MB_OK); MessageBox( NULL,"我的第三个框","First Application",MB_OKCANCEL); MessageBox( NULL,"我的第四个框","First Application",MB_RETRYCANCEL); MessageBox( NULL,"我的第五个框","First Application",MB_YESNO); MessageBox( NULL,"我的第六个框","First Application",MB_YESNOCANCEL); MessageBox( NULL,"我的第七个框","First Application",MB_APPLMODAL); MessageBox( NULL,"我的第八个框","First Application",MB_SYSTEMMODAL); MessageBox( NULL,"我的第九个框","First Application",MB_TASKMODAL); MessageBox( NULL,"我的第十个框","First Application",MB_ICONQUESTION); MessageBox( NULL,"我的第十一个框","First Application",MB_ICONEXCLAMATION); MessageBox( NULL,"我的第十二个框","First Application",MB_ICONINFORMATION); MessageBox( NULL,"我的第十三个框","First Application",MB_ICONQUESTION); MessageBox( NULL,"我的第十四个框","First Application",MB_ICONSTOP); return 0; }
一个小小的消息框的风格问题,使我困惑了许久。我真不知道它究竟有多少种?今天安装了MSDN,在里面查了一下,清楚多了。现在发上来,与初学的朋友共享。大家都应该安装MSDN!
[ 本帖最后由 hmsabc 于 2010-8-30 20:07 编辑 ]