Windows API GUI Designer?

Is there a good graphical user interface (read: drag 'n drop / WYSIWYG) for the plain old Windows API? I'm not looking for something using Qt, GTK, .NET, etc., Just the old Windows API.

Must be used with C or C ++.

+6
source share
1 answer

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

If you are not using Visual Studio, you can use an external resource editor such as ResEdit. Not being built into the IDE is unfortunately a bit more complicated.

+13
source

Source: https://habr.com/ru/post/894548/


All Articles