本次实验是在vc6平台下实现的,弹出对话框——Hello,world
新建程序
- 新建一个工程
- 选择“一个简单的Win32程序”
- 转移到FileView区,右侧就是源代码啦~
开始编写代码
知识点
- WinMain是一个函数,该函数的功能是被系统调用,作为一个32位应用程序的入口点。
- 程序中TEXT能把中文转换成不会乱码的格式(暂时是这样)。
- 使用到了MessageBox函数,第一个TEXT是正文内容,第二个TEXT是标题,MB是MessageBox的缩写
Hello,world运行结果如下
下面附上代码:
MessageBox(NULL,TEXT("Hello,world"),TEXT("WELCOME"),MB_OK);
这样,第一个实验Hello,world就完成啦
拓展
- MessageBox返回的是用户点击的按钮,为IDYES等
写一个小程序判断是不是一个good man(有[是],[否],问号图标),点击“是”,弹出“你不是一个good man”的对话框,否则弹出“是否重试”的对话框,源代码如下:
int ret = MessageBox(NULL,TEXT("Are you a good man?"),TEXT("QUESTION"),MB_YESNO|MB_ICONQUESTION);
if (IDYES == ret)//点击了“是”
{
MessageBox(NULL,TEXT("You are not a good man!!!Click the button [OK] and begin to format c disk."),TEXT("Warning"),MB_OK|MB_ICONWARNING);
}
else
{
MessageBox(NULL,TEXT("Failure to try to turn you into a good person.Retry?"),TEXT("Horrible"),MB_RETRYCANCEL);
}
return 0;
源代码:
#include "stdafx.h"
int APIENTRY WinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nCmdShow)
{
// TODO: Place code here.
int ret = MessageBox(NULL,TEXT("Are you a good man?"),TEXT("QUESTION"),MB_YESNO|MB_ICONQUESTION);
if (IDYES == ret)//点击了“是”
{
MessageBox(NULL,TEXT("You are not a good man!!!Click the button [OK] and begin to format c disk."),TEXT("Warning"),MB_OK|MB_ICONWARNING);
}
else
{
MessageBox(NULL,TEXT("Failure to try to turn you into a good person.Retry?"),TEXT("Horrible"),MB_RETRYCANCEL);
}
return 0;
}
运行结果
若选择“是”,则:
若选择“否”,则:
啦啦啦,小功告成啦,谢谢浏览呀