如何将菜单添加到源自 Qwidget 的小部件

发布于 2024-08-22 06:25:01 字数 142 浏览 5 评论 0原文

我想知道如何向小部件添加菜单,该小部件源自 QT symbian 中的 Qwidget,

我知道如何向源自 Qwindow 的窗口添加菜单,但我没有获得

源自 Qwidget 的

小部件,请帮助我..

谢谢

i want to know how to add menu to a widget, which is derived from Qwidget in QT symbian,

i know how to add menu to window derived from Qwindow, but i am not getting for widget

derived from Qwidget

pls help me..

Thanks

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

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

发布评论

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

评论(1

秋风の叶未落 2024-08-29 06:25:01

QMainWindow 为您提供了添加和管理 QMenuBar 的便捷功能。

对于继承自 QWidget(而不是 QMainWindow)的窗口,您需要自己实现这一点。您可以像任何其他 QWidget 一样使用函数 add。通过使用布局,您可以将 QMenuBar 放置在窗口的顶部。
另一种方法是使用 QToolBar

QMainWindow provides you convenience function to add and manage a QMenuBar.

With a window that inherits from QWidget (instead of QMainWindow) you need to achieve this by yourself. You can add the menu bar in the window layout like any other QWidget using the function add. By playing with the layouts you can place QMenuBar at the top of the window.
An other way can be to use a QToolBar.

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