I don't think there is any program like VS Windows.Forms for C++. Now I know that "Windows.Forms" are in themselves a C# "thing", but it eludes me why no one has put together a similar graphical construction interface for C++ Windows GUIs. Am I just not aware of it/them?

Should I try to make one (that'd be a challenge, for me anyway, but what fun!)? Anyone want to talk to me about making one with me?

link|improve this question

62% accept rate
why not use C++ on the .NET platform? then you get access to all the Windows.Forms – Scott M. Oct 11 '09 at 17:47
As i said to jon (albeit 10 seconds ago), I'm not looking for a framework, i'm looking for a WYSIWYG editor for my window. – Nona Urbiz Oct 11 '09 at 17:49
then qt designer is the way to go. – Scott M. Oct 11 '09 at 17:50
feedback

4 Answers

Yes, you are just unaware. The one I'm most familiar with is for use with the Qt Toolkit: QtDesigner. I'm sure there are others as well...

link|improve this answer
feedback

It's there, in Visual Studio, and has been there since before .NET, assuming you are talking about a graphical editor for laying out controls on a window. http://msdn.microsoft.com/en-us/library/6zd672xs.aspx

link|improve this answer
feedback

I'm not entirely sure what you're after - the designer? The framework?

The closest to Windows Forms is probably MFC, although various other GUI framework also exist... and some of them are portable, such as Qt and GTK+.

EDIT: For the designer side, from the Wikipedia Visual Studio page:

For MFC development, it provides a set of wizards for creating and customizing MFC boilerplate code, and creating GUI applications using MFC. Visual C++ can also use the Visual Studio forms designer to design UI graphically.

link|improve this answer
Don't want the framework - want the drag and drop controls – Nona Urbiz Oct 11 '09 at 17:48
1  
Well you can't have a designer without a framework to go with it - but there certainly used to be a GUI MFC designer as part of Visual Studio. – Jon Skeet Oct 11 '09 at 17:53
Visual Studio still includes a GUI designer for MFC. Qt also comes with a designer. – nos Oct 11 '09 at 21:50
feedback

Small correction: The Windows.Forms toolkit is not a C# specific toolkit, instead it's a .Net toolkit. Therefore it is available to versions of C++ which support managed code. Namely C++/CLI and C++ with managed extensions. It is even available to native C++ via COM interop and a lot of funky marshalling. But for raw native C++ with no managed components in the box, yes it's not available.

As to why? Probably because there are already several Windowing toolkits available out there for C++ which have a similar feature set as Windows.Forms. Here are a couple I know of

  • QT
  • MFC
  • WTL
link|improve this answer
MFC (which is the only one of those I'm aware of personally) is only a framework for easier interaction with the win api unless I am incorrect - not a WYSIWYG editor. Regardless, I don't want a framework, I want a gui editor for win api code. – Nona Urbiz Oct 11 '09 at 17:51
@Nona, MFC has a WYSIWYG editor inside of Visual Studio – JaredPar Oct 11 '09 at 17:53
You're incorrect - Visual Studio comes with a designer for MFC. – Jon Skeet Oct 11 '09 at 17:54
Thirding that VS has a WYSIWYG editor for MFC. It's a bit dusty now, but it was the mainstay of windows GUI development for many years. – Alan Oct 12 '09 at 2:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.