qlabel设置字体颜色
时间: 2023-07-04 09:15:42 浏览: 99
可以使用QLabel的setStyleSheet()方法来设置字体颜色。例如:
```python
label.setStyleSheet("color: red")
```
这将会把标签的字体颜色设置为红色。你也可以指定其他颜色,例如"blue"、"green"等。
如果你要同时设置字体颜色和背景颜色,可以使用如下代码:
```python
label.setStyleSheet("color: red; background-color: yellow")
```
这将会把字体颜色设置为红色,背景颜色设置为黄色。
相关问题
QLABEL设置字体颜色
您可以使用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;"`,以将标签的字体颜色设置为红色。您可以根据需要更改颜色和其他样式属性。
Qlabel设置字体颜色
可以使用QLabel的setStyleSheet()方法来设置字体颜色。例如:
```python
label.setStyleSheet("color: red")
```
这将会把标签的字体颜色设置为红色。你也可以指定其他颜色,例如"blue"、"green"等。
如果你要同时设置字体颜色和背景颜色,可以使用如下代码:
```python
label.setStyleSheet("color: red; background-color: yellow")
```
这将会把字体颜色设置为红色,背景颜色设置为黄色。
阅读全文