Qt风格控件
我有一个 qt 应用程序,默认看起来像 Windows 98。有什么办法让它看起来更好吗?我喜欢它在 GNOME 或 KDE 上的外观,但即使让它看起来像 Windows XP 也会是一个改进。
I have a qt app that is defaulting to looking like windows 98. Is there some way to get it to look better? I like the appearance it has on GNOME or KDE, but even getting it to look like windows XP would be an improvement.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看
QApplication::setStyle
:http://doc.qt.digia.com/4.6/qapplication.html#setStyle-2
以下代码应该使您的应用程序以 Windows XP 样式显示:
或者:另
请参阅:
http://doc.qt.digia.com/4.6/style-reference.html
Take a look at
QApplication::setStyle
:http://doc.qt.digia.com/4.6/qapplication.html#setStyle-2
The following code should make your application appear in Windows XP style:
or alternately:
See also:
http://doc.qt.digia.com/4.6/style-reference.html