4

これらは私が持っているウィジェットです。

self.recipient = QTextEdit(self)
self.document = QTextDocument(self)
self.recipient.setDocument(self.document)
self.cursor = QTextCursor(self.document)

私がやりたいことは、 を使用しQTextCursorて、選択したテキストを にコピーすることQTextEditです。関数を試しましたselectedText()が、空の文字列が返されます。これが私がそれを印刷しようとする方法です:

print('%s' % (self.cursor.selectedText()))
4

1 に答える 1