0
-windows forms application-
is there any software like visual c# to make a Windows form application in c++??
4 Answers
+ 2
Qt. It's third party, and isn't as elegant or simple as C# in my opinion, but the option is there.
+ 2
Qt is the name of the program. Third party is something downloaded off the internet and doesn't come pre-installed on Windows or the IDE. A library is a collection of files that you include in your program (using the "using" keyword), which will give you access to new classes, depending on what the library is about. For example, you could have a graphics library and have functions all about loading and manipulating images.
+ 1
I will always advice a c++ programmer to build his application using core windows API.
its quite hard to accomplish but if accomplished, your application can not be modified except you give out your source code.
Using qt or other third party libraries can make development easier but its always good to know the indepth of how your application works.
0
what is qt stands for??what is third party libraries?? how to use it?? sorry if I asking too much cuz I'm totally a beginner ..