Qt设置QLineEdit的背景色 [英] Qt Set Background Color of QLineEdit

查看:2047
本文介绍了Qt设置QLineEdit的背景色的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试更改QLineEdit的背景颜色,我根本无法弄清.

I'm trying to change the background color of the QLineEdit and I can't figure it out at all.

我原本是这样尝试使用stylesheets

I tried using stylesheets originally like this

QLineEdit *le = new QLineEdit();
le->setStyleSheet("background:#000;");

但是什么也没做.我尝试像这样使用QPalette

but that didn't do anything. I tried using QPalette like this

QPalette palette;
palette.setColor(QPalette::Base, Qt::black);
palette.setColor(QPalette::Background, Qt::black);
le.setPalette(palette);    

但是这也没有做任何事情.我整天都在找东西,什么也找不到.我是在做错什么,还是有另一种方法?

but this didn't do anything either. I've been looking all day and can't find anything. am I doing something wrong or is there another way to do it?

推荐答案

对我来说很好:

QLineEdit *le = new QLineEdit();
le->setStyleSheet("QLineEdit { background: rgb(0, 255, 255); selection-background-color: rgb(233, 99, 0); }");

这篇关于Qt设置QLineEdit的背景色的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆