QLABEL设置字体颜色
时间: 2023-09-03 14:15:29 浏览: 106
改变字体颜色
您可以使用QLabel的setStyleSheet()函数来设置字体颜色。以下是一个示例:
```python
from PyQt5.QtWidgets import QApplication, QLabel, QWidget
from PyQt5.QtGui import QFont
app = QApplication([])
window = QWidget()
label = QLabel("Hello World!")
label.setFont(QFont("Arial", 20))
label.setStyleSheet("color: red;")
window.setCentralWidget(label)
window.show()
app.exec_()
```
在上面的示例中,我们使用了`setStyleSheet()`函数并传递了一个CSS样式字符串 `"color: red;"`,以将标签的字体颜色设置为红色。您可以根据需要更改颜色和其他样式属性。
阅读全文