首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > QT开发 >

qt按钮字体颜色改不了解决方法

2012-03-19 
qt按钮字体颜色改不了程序如下,请高手指教,谢谢QPalettepal1 ui-pushButton_1-palette()pal1.setColo

qt按钮字体颜色改不了
程序如下,请高手指教,谢谢
QPalette pal1 = ui->pushButton_1->palette();
  pal1.setColor(QPalette::ButtonText,QColor(255,0,0));
  setPalette(pal1);

[解决办法]
多看看Manual:

Warning: Some styles do not use the palette for all drawing, for instance, if they make use of native theme engines. This is the case for both the Windows XP, Windows Vista, and the Mac OS X styles.


Style sheets let you perform all kinds of customizations that are difficult or impossible to perform using QPalette alone

热点排行