如何将 QProgressBar 添加到 QMenuBar?

发布于 2024-11-25 09:39:55 字数 217 浏览 0 评论 0原文

我需要向我的应用程序添加一个进度条,但我试图最大限度地减少 GUI 中浪费的空间。我的 QMenuBar 只有几个根菜单,并且该小部件的最右侧有大量浪费的空间。有没有办法在这个空间中添加 QProgressBar 小部件? QMenuBar 文档似乎表明它只支持文本菜单,但它也说“可以通过使用 QWidgetAction 类的实例来保存窗口小部件,将它们添加到菜单中。”我相信这只是为了向菜单项添加图标,而不是菜单栏。

I need to add a progress bar to my application, but I'm trying to minimize wasted space in the GUI. My QMenuBar only has a few root menus, and there is plenty of wasted space at the far right of this widget. Is there a way to add a QProgressBar widget in this space? The QMenuBar documentation seems to indicate it only supports text menus, but it also says "Widgets can be added to menus by using instances of the QWidgetAction class to hold them." I believe this is just for adding icons to menu items, not the menu bar.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

挥剑断情 2024-12-02 09:39:55

不准确。您可以在那里添加任何您想要的内容。

QWidgetAction* actProgressBar = new QWidgetAction(this);
QProgressBar* bar=new QProgressBar(this);
// setup progressbar here
actProgressBar->setDefaultWidget(bar);
menuBar->addAction(actProgressBar);

这将进度条添加到菜单栏。

not exact. You may add there anything you want.

QWidgetAction* actProgressBar = new QWidgetAction(this);
QProgressBar* bar=new QProgressBar(this);
// setup progressbar here
actProgressBar->setDefaultWidget(bar);
menuBar->addAction(actProgressBar);

this adds progress bar to menu bar.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文