Windows API gui designer?
Asked Answered
M

1

9

Is there a good GUI designer (read: drag 'n drop/WYSIWYG) for the plain old Windows API? I'm not looking for something that uses Qt, GTK, .NET, etc, just plain old Windows API.

Must be usable with either C or C++.

Milling answered 8/8, 2011 at 15:0 Comment(0)
A
14

You are looking for a resource editor. Visual Studio Professional, Premium and Ultimate have one built into the IDE. You can access it by creating a new .rc file and then adding a resource to it.

If you're not using Visual Studio you can use an external resource editor such as ResEdit. Not having it built into the IDE is a little bit more of a hassle unfortunately.

Aleishaalejandra answered 8/8, 2011 at 15:1 Comment(4)
Why was this downvoted? It's a pertinent answer. You might add that a resource editor only allows you to edit dialogs, not arbitrary windows.Lorielorien
The downvoter might be on crusade against the world. From behind his computer screen that is.Pashto
I just wanted to add that ResEdit can also generate code that will create your designed dialogs as windows; i.e. with CreateWindow[Ex]. The caveat is that as is often with generated code, it is very messy.Intoxicant
How can I add resources to *.rc file?Armful

© 2022 - 2024 — McMap. All rights reserved.