yolo
yolo

Reputation: 2795

Choosing a framework for building Windows GUI

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?

enter image description here

Upvotes: 1

Views: 1322

Answers (3)

Muhammad Hewedy
Muhammad Hewedy

Reputation: 30058

Why not consider Qt framework it is easy and rapid?

Upvotes: 0

Mark Ransom
Mark Ransom

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

David Heffernan
David Heffernan

Reputation: 612964

All of the above can produce such a GUI. From your list, .net with WinForms is the simplest.

Upvotes: 2

Related Questions