筆記——《C語言也能幹大事》之對話方塊程式碼

來源:互聯網
上載者:User
下面是對話方塊程式架構代碼:
//// resource.h//// 控制項 ID.//#define IDD_MAIN                    100#define IDC_OK                      101#define IDC_CANCEL                  102
 
//// main.h//#ifndef _MAIN_H#define _MAIN_H#include <windows.h>//// 自訂函數前置聲明.//BOOL WINAPI Main_Proc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);BOOL Main_OnInitDialog(HWND hwnd, HWND hwndFocus, LPARAM lParam);void Main_OnCommand(HWND hwnd, int id, HWND hwndCtl, UINT codeNotify);void Main_OnClose(HWND hwnd);
#endif
 
//// dialogs.cpp//#include <commctrl.h>
#include "main.h"#include "resource.h"int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow){ InitCommonControls();
// 建立對話方塊. DialogBox(hInstance, MAKEINTRESOURCE(IDD_MAIN), NULL, Main_Proc); return 0;}
  

//// main.cpp//#include <windows.h>#include <windowsx.h>#include "main.h"#include "resource.h"//// 主對話方塊過程.//BOOL WINAPI Main_Proc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam){    switch(uMsg)    {        HANDLE_MSG(hWnd, WM_INITDIALOG, Main_OnInitDialog);        HANDLE_MSG(hWnd, WM_COMMAND, Main_OnCommand);        HANDLE_MSG(hWnd, WM_CLOSE, Main_OnClose);    }    return FALSE;}BOOL Main_OnInitDialog(HWND hwnd, HWND hwndFocus, LPARAM lParam){       //    // Add initializing code here    //        return TRUE;}void Main_OnCommand(HWND hwnd, int id, HWND hwndCtl, UINT codeNotify){    switch(id)    {        case IDC_OK:            MessageBox(hwnd,TEXT("You clicked OK!"),TEXT("test2"),MB_OK);            EndDialog(hwnd, id);        break;        case IDC_CANCEL:            MessageBox(hwnd,TEXT("You clicked Cancel!"),TEXT("test2"),MB_OK);            EndDialog(hwnd, id);        break;        default:break;    }}void Main_OnClose(HWND hwnd){    EndDialog(hwnd, 0);}
   

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.