+ 12
How to create a programme with GUI in c++
hello guys , im new to c++ and have downloaded eclipse but i don't know how to write a c++ programme with a GUI can you pliz assist
3 Réponses
+ 16
You need any graphic library, such as Qt, etc
+ 12
depending on the platform, you'll need the platform library to access functions to create windows on the screen. From there you'll be able to do more.
+ 2
"Creating GUI applications in C++ in three steps":
Install Qt Creator
-Create new project (Qt4 Gui Application)
-Build it.
Congratulations, you've got your first GUI in C++.
Now you're ready to read a lot of documentation to create something more complicate than "Hello world" GUI application.