如何将 QLineEdit 添加到菜单栏
我正在尝试回收应用程序中的一些屏幕空间。我有一个搜索栏,它是一个基本的 QLineEdit 并且占用空间。在我的菜单栏中,我很容易有足够的空间来容纳这个搜索框,但我不知道如何将 LineEdit 放入菜单栏中。
有人可以帮助我将其添加到菜单栏吗?
我正在使用 Qt 4.7。
这是我试图完成的任务的图像。这是相当基本的图像,但我希望使用菜单栏的右半部分作为搜索框。
I am attempting to reclaim some screen real estate in my application. I've got a search bar that is a basic QLineEdit and takes up space. In my menu bar, I easily have enough room to fit this search box, but I can't figure out how to get the LineEdit into the menubar.
Can someone assist me in getting this added to a menubar?
I am using Qt 4.7.
Here is an image of what I am attempting to accomplish. It's fairly basic image, but I'm looking to use the right half of the menubar as a search box.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用QWidgetAction。 QWidgetAction 用于将自定义小部件插入到基于操作的容器中,例如工具栏。
这是向菜单栏添加进度条的示例:
Use QWidgetAction. QWidgetAction is for inserting custom widgets into action based containers, such as toolbars.
here is an example to add a progressbar to menu bar :
您可以使用
void QMenuBar::setCornerWidget ( QWidget * widget, Qt::Cornercorner = Qt::TopRightCorner )
在菜单中添加您的小部件。
You could use
void QMenuBar::setCornerWidget ( QWidget * widget, Qt::Corner corner = Qt::TopRightCorner )
to add your widget in the menu.