Qt Builder 是否有用于编辑工具栏的内置工具?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相当确定您无法直接在 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.