How to write a cross-platform program?

前端 未结 15 1926
遇见更好的自我
遇见更好的自我 2020-12-29 10:28

Greetings,

I want to write a small cross-platform utility program with GUI in it. What language/GUI-library should I stick to? Is it possible whatsoever?

Thi

相关标签:
15条回答
  • 2020-12-29 11:18

    wxWidgets has bindings to all sorts of languages - python for instance, if your app is small enough.

    0 讨论(0)
  • 2020-12-29 11:18

    If you're going to look at Qt and WxWidgets, don't forget to also check out GTK+ !

    0 讨论(0)
  • 2020-12-29 11:20

    If it "HAS" to be Desktop use Qt. Nothing beats it right now.

    However personally I gave up on desktop and any UI based project I do is normally Browser/Server based. You can easily write a little custom server that listens to some port so the program can run locally with no need for your users to install Apache or have access to the net. I have a small Lua, Python and C++ framework I made for that purpose (Want to add Javascript for the backend with V8 :)

    0 讨论(0)
提交回复
热议问题