标签: AfxMessageBox
MFC中AfxMessageBox怎么使用
在MFC中,AfxMessageBox函数用于显示一个包含消息文本和一个确定按钮的消息框。它的声明如下:
int AfxMessageBox(LPCTSTR lpszText, UINT nType = MB_OK, UI……
AfxMessageBox和MessageBox的用法
AfxMessageBox是MFC框架中提供的消息框函数,而MessageBox是Windows API中提供的消息框函数。
AfxMessageBox的用法:
弹出一个消息框,显示指定的文本消息,……