user230821
user230821

Reputation: 1123

Add mfc to a project?

I have already started a project and would like to add forms to it with MFC. How do you do this? I tried setting it to use mfc but it still doesn't allow me to add mfc classes(it says it isn't an mfc project).

Also is there any GUI library that works sorta like .net? Maybe it is because I haven't used MFC too much but I don't care for how it does events.

Upvotes: 0

Views: 643

Answers (2)

Rob
Rob

Reputation: 78598

If it isn't too late then you should seriously consider using Qt. You'll get a rich UI, the ability to add/remove events at runtime (through the Qt signals and slots mechanism) plus the code will build for Windows, Linux and the Mac. I cannot recommend this framework highly enough (and I have used MFC since 1994 and WTL since 2001.)

You can get a Qt Visual Studio plugin or even consider their superb IDE Qt Creator.

Upvotes: 1

Ben Straub
Ben Straub

Reputation: 5776

You could try WTL. It's kind of like MFC, but most of the work is done at compile time, so you don't have to ship a big DLL with your app. I did most of my learning at CodeProject.

Upvotes: 0

Related Questions