Advice for C++ GUI programming

前端 未结 12 1355
Happy的楠姐
Happy的楠姐 2020-12-24 15:09

I have been writing C++ Console/CMD-line applications for about a year now and would like to get into windows GUI apps. For those of you who have taken this road before, wh

12条回答
  •  有刺的猬
    2020-12-24 15:11

    It has been so long since I worked with C++ on Windows GUI, my word is always avoid C++ in Windows GUI unless you have a very good reason, I mean a good darn reason, if you need some performance C# is more than enough for 90% of the cases, and if you need more power write your performance critical thing in a C++ dll, and call it from a Windows Forms or WPF application. It will save you hell of a lot time. Still my opinion, if you have another I totally respect that

提交回复
热议问题