TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: What framework for a cross-platform menu-bar app?

7 点作者 dexcs超过 6 年前
Guys I want to create a menu-bar app, what framework does one use nowadays? It's pretty simple so I want it to run under Linux, Mac, and Windows. Any recommendations? I'm not a good coder of c++, something high-level would fit better, so I think QT is out of my scope right now...

4 条评论

snazz超过 6 年前
If the app is pretty simple, you could get away with writing it natively for each platform instead of worrying about making one version cross-platform. This way it will look native on every platform and it shouldn’t be significantly more work, assuming your app is fairly simple.
评论 #18385288 未加载
jrgoj超过 6 年前
QT is more accessible than you might assume. The QT Designer comes with a number of templates to get you running quickly. Connecting UI elements to backend code is fairly straightforward as well, and you can do much of it using the designer UI itself. Documentation is also pretty great.
mherrmann超过 6 年前
Try my <a href="https:&#x2F;&#x2F;build-system.fman.io" rel="nofollow">https:&#x2F;&#x2F;build-system.fman.io</a>. Based on PyQt, so you can use Python not C++, and makes cross-platform deployment super easy.
rboyd超过 6 年前
<a href="https:&#x2F;&#x2F;github.com&#x2F;status-im&#x2F;react-native-desktop" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;status-im&#x2F;react-native-desktop</a> perhaps?