如何用QT创建主题
我正在寻找一种方法,通过向其添加主题来使我的 pyqt 界面看起来更好。
我是 Qt 新手,我仍然不知道如何为小部件添加自定义主题..那怎么可能呢?
可以通过qt设计器实现吗?
抱歉我的英语不好,这是我的第三语言。我希望这个想法足够清晰。
如果有不清楚的地方,请告诉我..
提前致谢
im looking for a way to make my pyqt interface look nicer by adding a theme to it.
im new to Qt and i still have no idea how to add a custom theme for widgets.. so how is that possible ?
and is it possible through qt designer ?
sorry for my bad english , its my third language. i hope the idea is clear enough .
please let me know if something was unclear ..
thanks in advace
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最容易实现的方法是通过 Qt 的 样式表,它与 CSS 非常相似。如果您需要更复杂的内容,请查看样式参考。 Qt Designer 确实允许您访问 styleSheet 属性,尽管如果您正在做任何不平凡的事情,我建议您使用单独的文件。
The most easily implemented method is via Qt's style sheets that are quite similar to CSS. Take a look at the style reference if you need anything more complicated. Qt Designer does give you access to the styleSheet property, although I'd recommend using a separate file for it if you're doing anything non-trivial.