pyside6 字体设置微软雅黑
时间: 2023-10-25 15:10:56 浏览: 366
微软雅黑字体
4星 · 用户满意度95%
在 PySide6 中设置字体为微软雅黑,可以使用 QFont 类来实现。下面是一个示例代码:
```python
from PySide6.QtWidgets import QApplication, QLabel
from PySide6.QtGui import QFont
app = QApplication()
# 创建标签控件
label = QLabel("Hello, World!")
# 创建并设置字体为微软雅黑
font = QFont("微软雅黑", 12)
label.setFont(font)
# 显示标签
label.show()
# 运行应用程序
app.exec()
```
阅读全文