向textEdit些东西
时间: 2024-03-11 17:51:27 浏览: 52
JavaMe开发绘制文本框TextEdit
如果你想向一个名为 textEdit 的 QTextEdit 对象中添加一些文本,你可以使用它的 append() 方法。具体来说,你可以像这样编写代码:
```python
textEdit.append("Hello, world!")
```
这将在 textEdit 中添加一行文本 "Hello, world!"。如果你想添加多行文本,可以使用换行符 "\n"。例如:
```python
textEdit.append("Line 1\nLine 2\nLine 3")
```
这将在 textEdit 中添加三行文本,每行一个数字。如果你想添加一些格式化文本,比如粗体或斜体,可以使用 QTextCharFormat 类来设置格式。例如:
```python
from PyQt5.QtGui import QTextCharFormat, QFont
format = QTextCharFormat()
format.setFontWeight(QFont.Bold)
textEdit.setCurrentCharFormat(format)
textEdit.append("This text is in bold")
```
这将在 textEdit 中添加一行加粗的文本 "This text is in bold"。
阅读全文