How to use QT creator for developing QT UI applications and using my C++ knowledge
-
wrote on 15 Mar 2024, 06:17 last edited by
I am C++ developer and wanted to learn QT. I have installed
QT designer from [qt-unified-windows-x64-4.7.0-online].
Can you please suggest me how to create windows/forms/GUI screens using the above installation along with my C++ Knowledge. I am not sure how to switch to C++ code from the attached screens. -
I am C++ developer and wanted to learn QT. I have installed
QT designer from [qt-unified-windows-x64-4.7.0-online].
Can you please suggest me how to create windows/forms/GUI screens using the above installation along with my C++ Knowledge. I am not sure how to switch to C++ code from the attached screens.@Venkat123 Qt Designer is only for designing UIs.
You need to install Qt framework: on Windows either Qt for MSVC (then you also have to install Microsoft Visual Studio ot Build Tools by your own) or for MinGW compiler (which will also install MinGW compiler, so this is easier option to start). You can also install QtCreator which is an IDE where you can implement your application (it also contains the designer to design UIs). But you also can use Visual Studio. -
wrote on 15 Mar 2024, 06:25 last edited by Bonnie
This is not Qt creator / Qt designer, but Qt design studio.
-
I am C++ developer and wanted to learn QT. I have installed
QT designer from [qt-unified-windows-x64-4.7.0-online].
Can you please suggest me how to create windows/forms/GUI screens using the above installation along with my C++ Knowledge. I am not sure how to switch to C++ code from the attached screens.wrote on 15 Mar 2024, 11:53 last edited byLike @Bonnie said above, you installed Qt Design Studio. This is solely for modelling (more or less complex) 2D/3D GUIs in QML. So not a
QtWidget
-application.If you install QtCreator, you will find the IDE for coding in C++
2/4