Qt Builder 是否有用于编辑工具栏的内置工具?

发布于 2024-08-31 08:21:27 字数 102 浏览 4 评论 0原文

Qt 有一套标准图标吗? (例如后退前进等)

我如何将它们添加到Qt Creator/Designer中的按钮或工具栏?

Does Qt have a set of standard icons? (Like for Back,Forward, etc.)

How would I add these to a button or toolbar in Qt Creator/Designer?

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

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

发布评论

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

评论(1

人生戏 2024-09-07 08:21:27

我相当确定您无法直接在 Designer 中添加图标,但您可以使用以下方式以编程方式引用它们:

QIcon QStyle::standardIcon ( StandardPixmap standardIcon, const QStyleOption * option = 0, const QWidget * widget = 0 ) const

返回的 QIcon 应根据您当前的样式进行适当的样式。您可以在官方文档中查看标准图标列表。

I'm fairly certain you can't add the icons directly in Designer, but you can programmatically reference them using:

QIcon QStyle::standardIcon ( StandardPixmap standardIcon, const QStyleOption * option = 0, const QWidget * widget = 0 ) const

The returned QIcon should be style-appropriate based on your current style. You can see the list of standardIcons in the official documentation.

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