Graphical user interface Tutorial in C

前端 未结 3 660
既然无缘
既然无缘 2021-01-30 03:38

I have a project in C language and the teacher ordered to make a Gui of project. I can only use C or C++ for the GUI part.

Can anyone please suggest me Some easy open so

3条回答
  •  死守一世寂寞
    2021-01-30 04:06

    My favourite UI tutorials all come from zetcode.com:

    • wxWidgets (C++, cross platform)
    • Win32api GUI (C, Windows)
    • GTK+ (C, cross platform)
    • Qt4 Tutorial (C++, cross platform)

    These are tutorials I'd consider to be "starting tutorials". The example tutorial gets you up and going, but doesn't show you anything too advanced or give much explanation. Still, often, I find the big problem is "how do I start?" and these have always proved useful to me.

提交回复
热议问题