首页 > 代码库 > Creating Dialogbased Win32 Application (1) / 创建基于对话框的Win32应用程序(一)新建窗体 / Win32, VC++, Windows
Creating Dialogbased Win32 Application (1) / 创建基于对话框的Win32应用程序(一)新建窗体 / Win32, VC++, Windows
创建基于对话框的Win32应用程序(一) —— 新建窗体
1、新建一个Visual C++的Empty Project。
2、在Solution Explorer中右键Add New Item,添加 .cpp 文件,并提供Win32应用程序的入口点函数。
3、在Solution Explorer或 Resources View 中右键Add Resource,选择Dialog。并在修改相关内容。
4、切换到 .cpp文件中,创建回调函数(Dlg_Proc),并在入口点函数中调用DialogBoxParam。
1 #include <Windows.h> 2 #include <tchar.h> 3 #include "Resource.h" 4 5 INT_PTR WINAPI Dlg_Proc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam) { 6 switch (uMsg) 7 { 8 case WM_CLOSE: 9 EndDialog(hwnd, 0);10 break;11 }12 13 return(FALSE);14 }15 16 int WINAPI WinMain(HINSTANCE hinstExe, HINSTANCE, PTSTR pszCmdLine, int) {17 DialogBoxParam(hinstExe, MAKEINTRESOURCE(IDD_DIALOG),18 NULL, Dlg_Proc, _ttoi(pszCmdLine));19 return(0);20 }
5、此时按下F5 Start Debugging,可以看到刚才新建的对话框。
————————————————
本文为本人原创,转载请注明出处。
Creating Dialogbased Win32 Application (1) / 创建基于对话框的Win32应用程序(一)新建窗体 / Win32, VC++, Windows
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。