对齐 QMenuBar 项目(在左侧添加一些,在右侧添加一些)
目前我有带有三个 QAction 的 QMenuBar,它看起来像这样:
但我想得到这个(得到一些 QActions 右对齐):
有办法做到这一点吗?
Currently I have QMenuBar with three QActions and it looks like this:
but I would like to get this (get some QActions right-aligned):
Is there a way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于这个特定问题,最简单的解决方案可能是使用角部件。它可以用来将几乎所有东西放在最右边的位置,当然还有一个新的菜单栏:
结果:
这是特别是。当仍要在 QDesigner 中编辑主菜单时很有用...
Probably the most simple solution to this particular problem is to use the corner widget. It can be used to place almost anything at the rightmost position, of course also a new menu bar:
Result:
This is esp. helpful when the main menu is still to be edited in QDesigner...
一种可能的解决方案是这里。但它涉及实现你自己的风格(我记得是 QStyle)。然而,这是我刚刚在 mainwindow 类上尝试过的一个片段:
}
这应该是合适的。
Well one possible solution is here. But it involves implementing your own style (QStyle as I recall). However here is a snippet that I have just tried on mainwindow class:
}
This should be suitable.