Visual C++ 2015 GUI Programming

i wanna ask, is anybody knows any good tutorials for GUI programming in C++ 2015?
is there's pdf or any downloadable versions?
Don't use CLI, be hardcore and use win32API or MFC for windows, or wxWidgets for cross platform, managed C++ isn't C++ at all, it's more like a java/c#. If you don't care that much for performance, use those instead. Otherwise make full use of memory management and the speed that regular C++ offers.

win32api (for both C and C++, windows only)
http://www.winprog.org/tutorial/

MFC (C++, windows only)
http://www.tutorialspoint.com/mfc/

wxWidgets (C++ cross-platform)
http://www.wxwidgets.org/docs/tutorials/

A must-have book if you want to learn more about win32Api and windows programming in general
https://www.amazon.com/Programming-Windows%C2%AE-Fifth-Developer-Reference/dp/157231995X
i got petzold's but there's also people who says winAPI never used anymore

which one i shld learn, then?
Last edited on
If you got Petzold's book just start using it and see how it goes.
also people who says winAPI never used anymore

People have many opinions, doesn't mean that they are right.
I agree with Thomas1965.
@all: ok guys, thx for your opinion... i guess i'll start learn winAPI...
There really are a lot of considerations here. A lot depends on what you want to do and accomplish, and how much work you want to put into it. I've written a lot about it here you might find useful...

http://www.jose.it-berater.org/smfforum/index.php?topic=3389.0

Topic archived. No new replies allowed.