0
How do you create a GUI with C++?
3 Answers
+ 1
Use Qt5
+ 1
For Cross-Plattform: Qt
For Windows only: MFC(WinAPI)
Qt is a easy-to-learn framework, not only for GUIs, just like .NET or Java.
Windows has a great WinAPI, which lets you do cool things. The learn curve is smaller then qt's one, but it's powerful on Windows.
MFC (Microsoft Foundation Class) is a abstraction of WinAPI, especially made for GUIs.
0
Thanks