Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 QToolbar 我已将样式应用于:
sMainWindowStyle += "QToolBar::handle { image: url(:/icons/toolbar_handle.png); }\n";
但是,除了更改工具栏的句柄之外,我还想更改展开箭头 >>
我找不到属性列表,因此我可以查看工具栏展开箭头是什么。有人知道 Qt 中样式属性的明确列表吗?
您可以使用以下 CSS 更改展开按钮。
QToolButton#qt_toolbar_ext_button { qproperty-icon: url(:/path/to/image.png); }
不幸的是,我知道找出可以设置哪些属性的最佳方法是浏览 Qt 源代码。有些样式甚至不支持某些属性,而其他样式可以。