【窗口編程】一個簡單的C語言窗口程序

#include <windows.h> //回調函數 LRESULT CALLBACK WinProc(HWND hwnd,UINT message,WPARAM wParam,LPARAM lParam) { switch(message) { case WM_CLOSE: DestroyWindow(hwnd); PostQuitMessage(0); break; de
相關文章
相關標籤/搜索