QT Application的主题风格

news/2024/11/14 14:27:41/
  • Qt 应用的风格主题有多种,支持包括Windows XP Style Widget Gallery(windowsXp风格)、Windows Style Widget Gallery(window风格)、Windows Vista Style Widget Gallery(window vista风格)、Macintosh Style Widget Gallery(mac风格)、GTK Style Widget Gallery(GTK风格)、Fusion Style Widget Gallery(fusion风格)共六种。
  • QApplication类提供了两种方法,设置Qt应用的主题风格:

    [static] void QApplication::setStyle(QStyle *style)e.g. QApplication::setStyle(QStyleFactory::create("Fusion"));
    可以通过qDebug() << QStyleFactory::keys();获取QStyleFactor可以创建的QStyle
    QStyle *QApplication::setStyle(const QString &style)
    e.g. QApplication::setStyle("windowsxp");
    
  • 关于风格的介绍可以通过Qt助手,搜索“gallery”,查看Qt支持的六种主题风格样式。

—————————————————————————–

结尾奉献一个取消控件焦点虚线框的链接(干货)

http://blog.csdn.net/goforwardtostep/article/details/53420529

—————————————————————————–


http://www.ppmy.cn/news/652481.html

相关文章

一个比较vista的vista主题for rf5.0fb(转)

一个比较vista的vista主题for rf5.0fb(转)[more]简短描述: 抽空做了一个vista的主题&#xff0c;感觉还可以&#xff0c;同大家分享一下。 呵呵&#xff0c;今天晚上抽空整理了一下&#xff0c;欢迎下载试用&#xff01;&#xff01; 希望多提建议&#xff01;&#xff01; 安装…

flash版vista主题RealVista Desktop Mobile for s60v3

原文地址&#xff1a;http://www.oknokia.com.cn/article.asp?id977 你是否已经厌倦了NOKIA S60V3系统固化的主题模式&#xff1f;如果是这样&#xff0c;这里向你强烈推荐RealVista Desktop Mobile----------1个高仿vista系统的基于Flash Player Lite 2.1平台的flash主题&…

美化Windows2008---开启Vista主题和Flip 3D功能

windows2008的默认界面实在是太丑陋了&#xff0c;下面就来介绍一下如何美化&#xff0c;让windows2008也具体vista界面和flip 3d的功能。 1.开启themes服务。开始->运行services.msc->双击themes服务&#xff0c;启动类型里面选择自动&#xff0c;确定。 2.开启视觉性…

Vista恢复原主题

开始&#xff0c;程序&#xff0c;附件&#xff0c;右击cmd以管理员身份运行输入sfc/scannow&#xff0c;回车等完成后重启&#xff0c;到桌面后右击进入个性化在windows颜色和外观里选择windows aero即可以后要用别的主题得先破解

侧栏css_将主题应用于Windows Vista侧栏

侧栏css The look of the Windows Vista Sidebar is a little drab, and there’s no way to customize it with the default tools in Vista. Thankfully third party developers have stepped up to the plate and created an application that will let you re-theme the si…

vista系统桌面上显示的是我的电脑还是计算机,怎样设置Windows Vista桌面

怎样设置Windows Vista桌面 怎样设置Windows Vista桌面 WindowsVista桌面的设置主要包括界面主题的设置、桌面背景的设置、屏幕显示和颜色的设置、颜色和外观的设置等。 1&#xff0e;将界面还原成Windows经典主题 WindowsVista之前的版本&#xff0c;例如Windows95/98/2000操作…

最近感受了下Vista主题

再好看的事物&#xff0c;看的多了也会觉得乏味&#xff0c;再有趣的事情&#xff0c;做的多了也会觉得无聊。还好我们都是有着聪明头脑的人&#xff0c;能够不断的去创造&#xff0c;创造更多新鲜的东西&#xff0c;来满足我们。最近给我的机器装了个黑色的Vista主题&#xff…

Qt主题原理

概述 网上对 Qt 主题介绍比较少&#xff0c;主要是我们在使用主题的过程中&#xff0c;都是Qt 默认加载&#xff0c;用户基本上不做干预&#xff0c;细心的同学可能已经发现&#xff0c;在不同的平台(Mac\Wiwndows\linux)运行Qt 程序&#xff0c;他们的外观会保持系统风格一致&…