QT 面包屑导航
我想向 QT 应用程序添加面包屑导航栏。在 KDE 中,有 dolphin 使用的 KUrlNavigator。有原生的 QT 小部件吗?
I would like to add a breadcrumb navigation bar to a QT application. In KDE there is KUrlNavigator which is used by dolphin. Is there a native QT widget?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
libqxt.org 中的 qxtcrumbview
没有文档记录,您需要下载源代码才能找到这个。
qxtcrumbview in libqxt.org
Not documented, you need to download the source code in order to find this one.
这可以通过
QLabel
来实现:单个QLabel
中可能有多个链接,请参阅QLabel::openExternalLinks()
和Qt ::TextInteractionFlags
.或者更详细地说:
This may be achieved with
QLabel
: There may be multiple links in a singleQLabel
, seeQLabel::openExternalLinks()
andQt::TextInteractionFlags
.Or in more detail: