5 ตัวอย่าง GUI อย่างง่าย



การเขียนโปรแกรมแบบ GUI ต้องใช้อย่างน้อย

  

#include<windows.h>
int _stdcall WinMain ( HINSTANCE hInstance, HINSTANCE hPrevInstance,
LPSTR lpszCmdLine, int nCmdShow)
{
MessageBox ( 0, "Hello simple GUI", "Waiting", MB_OK ) ;
return 0 ;
}
view raw B05_SimpleGUI.c hosted with ❤ by GitHub