+ 9
C and C++ Graphic User Interface | code::blocks
Hey Sololearners, I was wondering if someone could please show me how to employ a user interface in C and C++ (Code::Blocks)
8 ответов
+ 11
We really need some lessons about graphical interfaces in not-web languages.
+ 10
c++ standard libraries does not provide APIs for GUI development, like java...there you need to implement other libraries
+ 7
c++ standard libraries does not provide APIs for GUI development, like java....you can see in website also
+ 5
You can try wxWidget
+ 5
Well if you are on Windows you could use the Windows API. To access it include windows.h.
+ 2
You can use wxWidgets or qt
+ 2
Blake Quake , after including the library then?
+ 2
Including the 'header', I wouldn't call it a library. Yes, there are plenty of tutorials out there for using it. I prefer to read the Microsoft docs, because the functions in windows.h are documented there.