怎么修改button字体的颜色
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎么修改button字体的颜色相关的知识,希望对你有一定的参考价值。
新建一个对话框工程,在对话框中添加一个按钮,然后,从button类继承一个子类 CNewButton, 重载 PreSubclassWindow,修改按钮的属性 ModifyStyle( 0 , BS_OWNERDRAW ); ,告诉系统,用户手绘按钮; 然后再重载DrawItem,在这里边修改按钮的背景色,字体的颜色,修改lpDrawItemStruct参数的值,使用SetBkColor,设置按钮字体的颜色, SetTextColor设置字体的颜色, 使用FillRect可以填充按钮的背景色。设置完后,给对话框的按钮添加一个变量,基类就选择刚才创建的CNewButton 参考技术A 可以添加一个新的class样式,控制新的样式就可以了,要不就直接给button设置样式,但是有一个弊端,就是你要是再有button按钮,还是这个颜色本回答被提问者采纳 参考技术B 1. 首先在res\values\下新建一个名为colors.xml的文件,内容如下:[html] view plain copy
<resources>
<drawable name="dark_gray">#8F8F8F</drawable>
<drawable name="light_gray">#EEEEEE</drawable>
<drawable name="white">#FFFFFF</drawable>
<drawable name="black">#000000</drawable>
<drawable name="blue">#2A00FF</drawable>
<drawable name="green">#f0f0</drawable>
<drawable name="yellow">#FFFEA4</drawable>
</resources>
2. 在res\drawable\下新建一个名为text_selector.xml的文件,内容如下:
[html] view plain copy
<?xml version="1.0" encoding="UTF-8"?>
<selector xmlns:android=
<item android:state_selected="true" android:color="@drawable/white" />
<item android:state_pressed="true" android:color="@drawable/white" />
<item android:color="@drawable/black"/>
</selector>
3. 给你的button对象添加一个属性,内容如下:
[html] view plain copy
android:textColor="@drawable/text_selector"
这样你的按钮上字体的颜色也可以变化,本例子未点击时为黑色,点击后为白色。
更多内容请参考www.viiboo.cn 希望对你有帮助
qt中如何修改按钮的背景颜色?
尝试如下:
QPushButton *but = new QPushButton;
QPalette palette;
palette.setCorlor(QPalette::Active,QPalette::Button,QColor(Qt::red);
but->setPalette(palette);
可是没有效果
codeeditor->setStyleSheet("background-color:lightYellow;");
文字的颜色设置:
QPlainTextEdit edit;
QPalette p = edit.palette();
p.setColor(QPalette::Active, QPalette::Base, Qt::red);
p.setColor(QPalette::Inactive, QPalette::Base, Qt::red);
edit.setPalette(p);
Qt 是一个1991年由奇趣科技开发的跨平台C++图形用户界面应用程序开发框架。它既可以开发GUI程序,也可用于开发非GUI程序,比如控制台工具和服务器。Qt是面向对象的框架,使用特殊的代码生成扩展(称为元对象编译器(Meta Object Compiler, moc))以及一些宏,易于扩展,允许组件编程。2008年,奇趣科技被诺基亚公司收购,QT也因此成为诺基亚旗下的编程语言工具。2012年,Qt被Digia收购。2014年4月,跨平台集成开发环境Qt Creator 3.1.0正式发布,实现了对于iOS的完全支持,新增WinRT、Beautifier等插件,废弃了无Python接口的GDB调试支持,集成了基于Clang的C/C++代码模块,并对Android支持做出了调整,至此实现了全面支持iOS、Android、WP。 参考技术A QPushButton *but = new QPushButton;
but->setStyleSheet("background-color: rgb(175,238,238)");
but->show() ;
帮助文档有对该函数有很好的介绍,楼主可以自己去看哦。 参考技术B QPushButton *but = new QPushButton;
QPalette palette = but->palette();
palette.setCorlor(QPalette::Active,QPalette::Button,QColor(Qt::red);
but->setPalette(palette);
//palette()返回值是创建的QPalette对象的引用
以上是关于怎么修改button字体的颜色的主要内容,如果未能解决你的问题,请参考以下文章