Reputation: 2795
New to Windows programming.
Which of the following C++ API can be used to create this kind of GUI in Windows ( it was created using AutoHotkey )
It has quite native interface, and does not require any dependency (small exe).
Moreover, which is preferred for simple apps?
Upvotes: 1
Views: 1322
Reputation: 308196
You forgot one. The combination of Microsoft's ATL and WTL resemble MFC superficially but are meant to be lighter weight. I believe a smaller application can be made with these tools.
Upvotes: 3
Reputation: 612964
All of the above can produce such a GUI. From your list, .net with WinForms is the simplest.
Upvotes: 2