码迷,mamicode.com
首页 > Windows程序 > 详细

第一个Windows实例程序

时间:2021-01-18 11:43:09      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:alt   main   mds   width   img   height   box   clu   提示   

1、实现弹出如下样式的提示框:

技术图片

2、实现弹出的字符串内容通过exe参数传进去,例如:

技术图片

 

#include <Windows.h>
#include <tchar.h>
int WINAPI _tWinMain(HINSTANCE hInstance, HINSTANCE hPreInstance, LPTSTR lpCmdLine, int nCmdShow)
{
    
    //MessageBox(NULL, _T("这是我在VC驿站学习的第一个程序!\nVC驿站的网址是www.cctry.com\n欢迎光临"),
    //    _T("cctry.com") , MB_ABORTRETRYIGNORE | MB_ICONWARNING | MB_DEFBUTTON2);

    MessageBox(NULL, lpCmdLine, _T("标题"), MB_OK);
    return 0;    
}

 

第一个Windows实例程序

标签:alt   main   mds   width   img   height   box   clu   提示   

原文地址:https://www.cnblogs.com/SakuraQAQ/p/14290431.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!