AfxMessageBox是MFC框架中提供的消息框函数,而MessageBox是Windows API中提供的消息框函数。
AfxMessageBox的用法:
AfxMessageBox(“Hello World!”);
AfxMessageBox(“Are you sure you want to delete this file?”, MB_YESNO);
AfxMessageBox(“Error occurred!”, MB_ICONERROR);
MessageBox的用法:
MessageBox(NULL, “Hello World!”, “MessageBox Sample”, MB_OK);
MessageBox(NULL, “Are you sure you want to delete this file?”, “Confirmation”, MB_YESNO);
MessageBox(NULL, “Error occurred!”, “Error”, MB_ICONERROR);
注意:AfxMessageBox是MFC框架中的函数,需要在MFC应用程序中使用;而MessageBox是Windows API中的函数,可以在任何Windows应用程序中使用。