Qt Set Background Color of QLineEdit(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的背景颜色的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Qt设置QLineEdit的背景颜色
基础教程推荐
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17
- C++,'if' 表达式中的变量声明 2021-01-01
- 运算符重载的基本规则和习语是什么? 2022-10-31
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01
- C++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04
- 设计字符串本地化的最佳方法 2022-01-01