windows編程初步

來源:互聯網
上載者:User

標籤:style   ret   rbac   size   處理   pat   call   ext   ati   

#include <windows.h>

 

const char g_szClassName[] = "myWindowClass";

 

LRESULT CALLBACK WndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)

{

    switch(msg)

    {

        case WM_LBUTTONDOWN:

        {

            printf("you have clicked left_button once!\n");

            //answer:

            MessageBox(hwnd, TEXT("你點擊了左鍵一下!"), TEXT("通知"), MB_OK | MB_ICONINFORMATION);

 

            char szFileName[MAX_PATH];

            //GetModuleHandle()的說明指出傳給它一個NULL會返回一個建立發出調用進程的檔案控制代碼

            HINSTANCE hInstance = GetModuleHandle(NULL);

            //訊息處理函數

            GetModuleFileName(hInstance, szFileName, MAX_PATH);

            MessageBox(hwnd, szFileName, "This program is:", MB_OK | MB_ICONINFORMATION);

        }

        break;

 

        case WM_RBUTTONDOWN:

        {

            printf("you have clicked right_button once!\n");

            //answer:

            MessageBox(hwnd, TEXT("你點擊了右鍵一下!"), TEXT("通知"), MB_OK | MB_ICONINFORMATION);

 

            char szFileName[MAX_PATH];

            //GetModuleHandle()的說明指出傳給它一個NULL會返回一個建立發出調用進程的檔案控制代碼

            HINSTANCE hInstance = GetModuleHandle(NULL);

            //訊息處理函數

            GetModuleFileName(hInstance, szFileName, MAX_PATH);

            MessageBox(hwnd, szFileName, "This program is:", MB_OK | MB_ICONINFORMATION);

        }

        break;

 

        case WM_MBUTTONDOWN:

        {

            printf("you have clicked middle_button once!\n");

            //answer:

            MessageBox(hwnd, TEXT("你點擊了中鍵一下!"), TEXT("通知"), MB_OK | MB_ICONINFORMATION);

 

            char szFileName[MAX_PATH];

            //GetModuleHandle()的說明指出傳給它一個NULL會返回一個建立發出調用進程的檔案控制代碼

            HINSTANCE hInstance = GetModuleHandle(NULL);

            //訊息處理函數

            GetModuleFileName(hInstance, szFileName, MAX_PATH);

            MessageBox(hwnd, szFileName, "This program is:", MB_OK | MB_ICONINFORMATION);

        }

        break;

 

        case WM_CLOSE:

        {

            DestroyWindow(hwnd);

            printf("windows closed!\n");

        }

        break;

        case WM_DESTROY:

        {

            PostQuitMessage(0);

            printf("windows destroied!\n");

        }

        break;

        default:

            return DefWindowProc(hwnd, msg, wParam, lParam);

    }

    return 0;

}

 

int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,

    LPSTR lpCmdLine, int nCmdShow)

{

    WNDCLASSEX wc;

    HWND hwnd;

    MSG Msg;

 

    wc.cbSize        = sizeof(WNDCLASSEX);

    wc.style         = 0;

    wc.lpfnWndProc   = WndProc;

    wc.cbClsExtra    = 0;

    wc.cbWndExtra    = 0;

    wc.hInstance     = hInstance;

    wc.hIcon         = LoadIcon(NULL, IDI_APPLICATION);

    wc.hCursor       = LoadCursor(NULL, IDC_ARROW);

    wc.hbrBackground = (HBRUSH)(COLOR_WINDOW+1);

    wc.lpszMenuName  = NULL;

    wc.lpszClassName = g_szClassName;

    wc.hIconSm       = LoadIcon(NULL, IDI_APPLICATION);

 

    if(!RegisterClassEx(&wc))

    {

        MessageBox(NULL, "Window Registration Failed!", "Error!",

            MB_ICONEXCLAMATION | MB_OK);

        return 0;

    }

 

    hwnd = CreateWindowEx(

        WS_EX_CLIENTEDGE,

        g_szClassName,

        "The title of my window",

        WS_OVERLAPPEDWINDOW,

        CW_USEDEFAULT, CW_USEDEFAULT, 240, 120,

        NULL, NULL, hInstance, NULL);

 

    if(hwnd == NULL)

    {

        MessageBox(NULL, "Window Creation Failed!", "Error!",

            MB_ICONEXCLAMATION | MB_OK);

        return 0;

    }

 

    ShowWindow(hwnd, nCmdShow);

    UpdateWindow(hwnd);

 

    while(GetMessage(&Msg, NULL, 0, 0) > 0)

    {

        TranslateMessage(&Msg);

        DispatchMessage(&Msg);

    }

    return Msg.wParam;

}

windows編程初步

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.