如何将菜单添加到源自 Qwidget 的小部件
我想知道如何向小部件添加菜单,该小部件源自 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.