Python - pyqt5 - 清除QTextBrowser的选择

时间:2018-04-11 14:25:25

标签: python qt pyqt5 qtextbrowser

我想清除import numpy as np A = np.array([[23,12],[34,21],[25,20]]) res = A[:, 0].max(), A[:, 1].min() # (34, 12) 中的选择(清除突出显示)。

QTextBrowser

以上代码对我不起作用。

1 个答案:

答案 0 :(得分:3)

试试这个:

cursor = self.textBrowser.textCursor()
cursor.clearSelection()
self.textBrowser.setTextCursor(cursor)

self.textBrowser.textCursor()返回的游标只是正在使用的textCursor的副本。要将更改应用于文本浏览器,您必须对副本进行操作,然后将文本浏览器textCursor设置为修改后的版本。