pyqt6 显示字符
时间: 2023-10-14 21:06:31 浏览: 75
显示字符串
可以使用 QLabel 控件来显示字符。下面是一个简单的示例代码:
```python
import sys
from PyQt6.QtWidgets import QApplication, QLabel, QWidget
app = QApplication(sys.argv)
widget = QWidget()
widget.setWindowTitle('显示字符')
widget.setGeometry(100, 100, 250, 100)
label = QLabel('Hello PyQt6!', widget)
label.move(80, 40)
widget.show()
sys.exit(app.exec())
```
这个代码创建了一个窗口,并在窗口中显示了一个标签控件,标签上显示了字符串“Hello PyQt6!”。可以使用 `QLabel.setText()` 方法来设置标签控件显示的文本。
阅读全文