How to learn wxDev-C++?

How to learn wxDev-C++ correctly? Because i have try to find the tutorial in internet but didn't find it . In another post i had read, by looking source code of another GUI of C++ and use it to wxDev-C++ will helped. But, i have try it and also did not working.
Last edited on
I don't know much about Dev-c++ but if it is anything like DevC++ people on this site will tell you to switch compilers.

If you want to make GUIs with pre-made WxWidgets, check out Qt. It's a very useful tool for such stuff.

Otherwise use WIN32 pre-constructed classes such as:
CreateWindowEx(0, "CLASS", ...)
Where "CLASS" is "Button", "Static", "Edit" or PROGRESS_CLASS.

Just specify an ident for each object, some text, and a location/size.
Stewbond,..
so.., that mean by looking source of Qt we can use it to wxDev-C++?
Topic archived. No new replies allowed.