學MFC之前必須會的金典創建窗口程序的過程代碼

#include <windows.h>
// 窗口過程函數
LRESULT CALLBACK MyWndProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
	switch (uMsg)
	{
	case WM_DESTROY:
		PostQuitMessage (0);
		return 0;
	case WM_PAINT:
		PAINTSTRUCT ps;
		HDC hDC = BeginPaint (hwnd, &ps);
        Ellipse (hDC, 100, 100, 400, 400);
		EndPaint (hwnd, &ps);
		break;
	}
    return DefWindowProc (hwnd, uMsg, wParam, lParam);
}
// 設置並註冊窗口類
ATOM InitApplication (HINSTANCE hInstance)
{
	WNDCLASSEX wcs;
	wcs.cbSize = sizeof (wcs);
	wcs.cbWndExtra = 0;
	wcs.cbClsExtra = 0;
	wcs.hbrBackground = (HBRUSH)GetStockObject (WHITE_BRUSH);
	wcs.hCursor = LoadCursor (hInstance , IDC_CROSS);
	wcs.hIcon = LoadIcon (hInstance, IDI_INFORMATION);
	wcs.hIconSm = LoadIcon (hInstance, IDI_QUESTION);
	wcs.hInstance = hInstance;
	wcs.lpfnWndProc = MyWndProc;
	wcs.style = CS_VREDRAW | CS_HREDRAW;
	wcs.lpszMenuName = NULL;
	wcs.lpszClassName = "WinHello";
	return RegisterClassEx (&wcs);
}
// 創建、顯示和更新窗口
BOOL InitInstance (HINSTANCE hInstance, int nCmdShow)
{
	HWND hMainWnd = CreateWindowEx ( 0,
		                             "WinHello",
									 "MyWinHello",
									 WS_OVERLAPPEDWINDOW,
									 CW_USEDEFAULT,
									 CW_USEDEFAULT,
									 CW_USEDEFAULT,
									 CW_USEDEFAULT,
									 NULL,
									 NULL,
									 hInstance,
									 NULL);
	if (! hMainWnd)
		return FALSE;
	ShowWindow (hMainWnd, nCmdShow);
	UpdateWindow (hMainWnd);
	return TRUE;
}
// 主函數: 消息循環是重點
int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrecInstance, LPSTR lpCmdLine, int nShowCmd)
{
	if (! InitApplication (hInstance))
		return 0;
	if (! InitInstance (hInstance, nShowCmd))
		return 0;

	MSG msg;
	while (GetMessage (&msg, NULL, 0, 0))
	{
		TranslateMessage (&msg);
		DispatchMessage (&msg);
	}
	return msg.wParam;
}

發佈了93 篇原創文章 · 獲贊 67 · 訪問量 100萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章