设置qlabel背景色
时间: 2024-01-29 07:07:57 浏览: 79
044 QLabel设置文件格式颜色背景色字体和大小.7z
5星 · 资源好评率100%
设置QLabel的背景色有多种方法,以下是三种常用的方法:
1. 使用QPalette调色板:
QPalette label_palette;
label_palette.setColor(QPalette::Background, QColor(0, 0, 0));
ui->label->setAutoFillBackground(true);
ui->label->setPalette(label_palette);
2. 使用setStyleSheet方法:
ui->label->setStyleSheet("QLabel{background:#000000;}");
3. 在QWidget中重载mousePressEvent方法,通过childAt方法获取被点击的子控件,然后设置其背景色:
from PyQt5.Qt import *
import sys
class Window(QWidget):
def mousePressEvent(self, evt):
local_x=evt.x()
local_y=evt.y()
sub_widget=self.childAt(local_x,local_y)
if sub_widget is not None:
sub_widget.setStyleSheet("background-color:red;")
print("被点击了",local_x,local_y)
if __name__=='__main__':
app=QApplication(sys.argv)
win=Window()
win.resize(500,500)
win.setWindowTitle("点击设置控件颜色")
for i in range(1,11):
lable=QLabel(win)
lable.setText("标签"+str(i))
lable.move(40*i,40*i)
win.show()
sys.exit(app.exec_())
--相关问题--:
1. 如何设置QLineEdit的背景色?
2. 如何设置QPushButton的背景色?
3.
阅读全文