What's the C++ GUI building option with the easiest learning curve - VS/Qt/wxWidgets/etc.?

前端 未结 11 1587
南旧
南旧 2021-02-07 20:38

I\'m looking to be able to build GUI applications quickly and painlessly as possible. I\'m competent (though not expert, and have no formal training) in C++, but have never used

11条回答
  •  野的像风
    2021-02-07 21:22

    Since nobody has mentioned it yet, for the sake of completeness, have a plug for the Fox toolkit. This is the one I used last time I did any C++ UI work of my own volition. There are also binding for this to Ruby and Python (the latter being many years out of date, though).

    In general, the choice of a toolkit for self-directed work comes down to personal preferences for

    1. the layout manager style
    2. the event handler registration style
    3. How native the widget set looks/can be made to look

提交回复
热议问题