pyqt输入的字体大小设置
时间: 2024-06-05 10:04:42 浏览: 109
PyQt5 实现字体大小自适应分辨率的方法
在PyQt中,可以使用QFont类来设置字体大小。下面是一个简单的例子:
```python
from PyQt5.QtWidgets import QApplication, QWidget, QLabel
from PyQt5.QtGui import QFont
app = QApplication([])
window = QWidget()
label = QLabel('Hello World!', window)
font = QFont('Arial', 20) # 设置字体为Arial,大小为20
label.setFont(font)
window.show()
app.exec_()
```
在这个例子中,我们使用`QFont`类来设置字体的名称和大小,并将其应用于一个标签上。您可以根据自己的需要调整字体的大小。
阅读全文