如何写个GUI的windows程序
1个回答
展开全部
使用C语言编写GUI的软件,一般需要GUI相关的库,比如QT库,比如Windows上的SDK库。需要专门找这方面的资料学习。以Windows为例,写一个最简单的hello world,以下程序在vc6.0中编译通过,实际上只是调用了一个SDK中的MessageBox函数。
12345678
#include <tchar.h>#include <windows.h>#pragma comment(linker ,"/entry:mainCRTStartup /subsystem:windows")int main(){MessageBox(0, _T("hello world\n"), _T("Test"), MB_OK);return 0;}
12345678
#include <tchar.h>#include <windows.h>#pragma comment(linker ,"/entry:mainCRTStartup /subsystem:windows")int main(){MessageBox(0, _T("hello world\n"), _T("Test"), MB_OK);return 0;}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |