Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不知道为什么我很难找到这个,但是你如何添加一个超链接到QTextEditor QTextBrowser?我正在尝试制作具有链接列表的东西,当您单击链接时,您将获得该链接所引用的对象。
QTextEdit
QTextBrowser
您需要将该acceptRichText属性设置为 true。然后,您可以使用setHTML()插槽传入 HTML。
acceptRichText
setHTML()
win.setHTML("<a href="http://foo>Bar</a>");