python代码,获取鼠标选中的文本内容
时间: 2023-10-07 09:04:19 浏览: 912
获取鼠标选中的文字
3星 · 编辑精心推荐
可以使用PyQt库中的QTextEdit控件实现,代码如下:
```python
import sys
from PyQt5.QtWidgets import QApplication, QTextEdit
def get_selected_text(widget):
cursor = widget.textCursor()
selected_text = cursor.selectedText()
return selected_text
if __name__ == '__main__':
app = QApplication(sys.argv)
text_edit = QTextEdit()
text_edit.show()
sys.exit(app.exec_())
```
你可以通过在QTextEdit控件中选择文本来测试该代码,然后调用get_selected_text函数来获取选中的文本内容。当用户选择文本时,将返回选中的文本,否则将返回空字符串。
阅读全文