+ 1
GUIs with C++
I’ve been searching across the internet, and I could not find a good answer to this question. So either it doesn’t exist or I haven’t looked hard enough (probably the more likely option). I really enjoy C++, and I am trying to make a simple GUI for a calculator I’m making. I’m using Visual Studio 2017 for my IDE, and if possible links to any good guides would be wonderful. Windows. Basic functions I’d like to do: make buttons, make a display, make a separate window, and if possible, make a graph.
4 Respostas
+ 4
//Some questions related is already asked,
https://www.sololearn.com/discuss/273847/?ref=app
https://www.sololearn.com/discuss/554989/?ref=app
https://www.sololearn.com/discuss/339655/?ref=app
https://www.sololearn.com/discuss/341696/?ref=app
https://www.sololearn.com/discuss/1256583/?ref=app
https://www.sololearn.com/discuss/1504989/?ref=app
https://www.sololearn.com/discuss/588192/?ref=app
+ 4
Braden Troyer The thing is, there is no built-in GUI library for C++ (graphics.h is obsolete so don't use it). You will have to install one and follow the instructions/tutorials they provide. Some of the more popular GUI libraries are in the threads linked by Shudarshan Rai 👑 .
+ 1
Try QtCrestor... It's nice and easy..
In http://www.diegocodevilla.com.ar/gui-con-qt/ you will find some videos that you might found helpful.. - in spanish thou-
0
thank you!