91学习

陪伴你每一天!

弹出我的第一个提示框

// posji187900284560.cpp : Defines the entry point for the console application.

//


#include "stdafx.h"

#include <windows.h>



int main(int argc, char* argv[])

{

int nSelect=::MessageBox(NULL,"这是我的第一个提示框内容,欢迎加微信18790284560一起学习","提示框按钮",MB_OKCANCEL);

if(nSelect==IDOK)

printf("用户选择了“确定”按钮\n");

else

printf("用户选择了“取消”按钮\n");

return 0;


}

POSji18790284560.png

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。