文件名称:Visual Studio 2008写的SDK对话框程序
文件大小:7KB
文件格式:7Z
更新时间:2013-08-07 15:13:30
Visual Studio 2008写的SDK对话框程序
// Dialog.cpp : 定义应用程序的入口点。 // #include "stdafx.h" #include "Dialog.h" LRESULT CALLBACK DialogProc(HWND, UINT,WPARAM, LPARAM); int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) { DialogBox(hInstance, MAKEINTRESOURCE(IDD_DIALOG), GetDesktopWindow(), (DLGPROC)DialogProc); return TRUE; } LRESULT CALLBACK DialogProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) { switch (message) { case WM_INITDIALOG: return TRUE; case WM_SETFONT: //不常用控件消息处理 { INITCOMMONCONTROLSEX icex; icex.dwSize =sizeof(INITCOMMONCONTROLSEX); icex.dwICC =ICC_INTERNET_CLASSES; ::InitCommonControlsEx(&icex); } break; case WM_MOUSEMOVE: SendMessage(hDlg, WM_NCLBUTTONDOWN, HTCAPTION, 0); return 0; case WM_COMMAND: //基本控件消息处理 break; case WM_CLOSE: EndDialog(hDlg, LOWORD(wParam)); return TRUE; break; } return FALSE; }
【文件预览】:
Dialog
----Dialog.sln(884B)
----Dialog()
--------Dialog.cpp(1KB)
--------resource.h(494B)
--------stdafx.h(525B)
--------Dialog.rc(2KB)
--------targetver.h(1KB)
--------Dialog.vcproj.SFL.Administrator.user(1KB)
--------Dialog.aps(2KB)
--------stdafx.cpp(211B)
--------ReadMe.txt(2KB)
--------Dialog.vcproj(5KB)
--------Dialog.h(39B)
----Dialog.suo(15KB)