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.
我使用 Qt 的 setBackgroundBrush 函数来设置背景图像。如何调整图像大小或设置其位置?
例如,我希望它居中并填充整个区域。
我不认为这是可能的setBackgroundBrush,但如果你想要更多的控制,你也可以用样式表设置背景图像。Qt 文档中的示例代码:
setBackgroundBrush
QLabel { background-image: url(dense6pattern.png); background-repeat: repeat-xy; }
更多信息在这里。