How to use QT creator for developing QT UI applications and using my C++ knowledge
-
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. -