Launching Windows GUI Application Development Using C ++

I am creating a GUI program for Windows in C ++, I am very familiar with C ++ on the command line, as well as in creating games. But I'm not sure where to start with developing GUI applications.

I have Visual Studio 2010 and new projects are being created with a graphical interface, but these templates are complex and do not allow me to understand what is happening and how to modify it.

So, I ask, where to start? Preferably good websites that you can recommend or tutorials rather than books that are poor student :)

+3
source share
3 answers

Windows Win2.0, : #. ++, (, ) .

, , ++.

, . Windows , ++ . , , .

+7

Qt .

+5

Use a GUI / GUI library that hides dirt from the low-level GUI api. MFC is not a solution - it is just a thin layer over WinAPI. I recommend using QT or wxWidgets . If you use Qt, use the Qt creator / Qt constructor to develop interfaces. If you use wxWidgets uses wxFormBuilder.

+1
source

Source: https://habr.com/ru/post/1748041/


All Articles