现在的位置: 首页 > 综合 > 正文

[强]VC 6.0 可以这样创建对话框

2013年10月31日 ⁄ 综合 ⁄ 共 1829字 ⁄ 字号 评论关闭

// 看看代码吧
#include "stdafx.h"
#include "resource.h"
#include <windows.h>

static unsigned char dlg_14[] =
{
    0xc0,0x20,0xc8,0x80,0x00,0x00,0x00,0x00,
    0x04,0x00,0x00,0x00,0x00,0x00,0xb4,0x00,0x39,
    0x00,0x00,0x00,0x00,0x00,0x47,0x00,0x6f,
    0x00,0x74,0x00,0x6f,0x00,0x20,0x00,0x6c,
    0x00,0x69,0x00,0x6e,0x00,0x65,0x00,0x00,
    0x00,0x08,0x00,0x4d,0x00,0x53,0x00,0x20,
    0x00,0x53,0x00,0x68,0x00,0x65,0x00,0x6c,
    0x00,0x6c,0x00,0x20,0x00,0x44,0x00,0x6c,
    0x00,0x67,0x00,0x00,0x00,0x00,0x00,0x00,
    0x00,0x02,0x50,0x00,0x00,0x00,0x00,0x07,
    0x00,0x09,0x00,0x32,0x00,0x0a,0x00,0xb0,
    0x04,0xff,0xff,0x82,0x00,0x26,0x00,0x4c,
    0x00,0x69,0x00,0x6e,0x00,0x65,0x00,0x20,
    0x00,0x4e,0x00,0x75,0x00,0x6d,0x00,0x62,
    0x00,0x65,0x00,0x72,0x00,0x3a,0x00,0x00,
    0x00,0x00,0x00,0x80,0x00,0x81,0x50,0x00,
    0x00,0x00,0x00,0x37,0x00,0x07,0x00,0x39,
    0x00,0x0c,0x00,0x02,0x01,0xff,0xff,0x81,
    0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,
    0x00,0x01,0x50,0x00,0x00,0x00,0x00,0x07,
    0x00,0x22,0x00,0x32,0x00,0x0e,0x00,0x01,
    0x00,0xff,0xff,0x80,0x00,0x4f,0x00,0x4b,
    0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
    0x00,0x01,0x50,0x00,0x00,0x00,0x00,0x4e,
    0x00,0x22,0x00,0x32,0x00,0x0e,0x00,0x02,
    0x00,0xff,0xff,0x80,0x00,0x43,0x00,0x61,
    0x00,0x6e,0x00,0x63,0x00,0x65,0x00,0x6c,
    0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
};

LRESULT CALLBACK DlgProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
int main(int argc, char* argv[])
{
 HMODULE hModule = ::GetModuleHandle(NULL);
 HINSTANCE hInst = hModule;
 HRSRC hRsrc = ::FindResource(hInst, MAKEINTRESOURCE(IDD_DIALOG1), RT_DIALOG);
 HGLOBAL hGlobal = ::LoadResource(hModule, hRsrc);
 DialogBoxIndirectParam(hInst, (LPCDLGTEMPLATE)dlg_14, NULL, (DLGPROC)DlgProc, NULL);
 return 0;
}

LRESULT CALLBACK DlgProc(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
 switch(uMsg)
 {
 case WM_CLOSE:
  ::EndDialog(hDlg, IDOK);
  return TRUE;
  break;
 }
 return 0;

抱歉!评论已关闭.