使 QLabel 表现得像一个超链接

2021-12-09 00:00:00 qt c++

如何让 QLabel 表现得像一个链接?我的意思是我希望能够点击它,然后这会调用它的一些命令.

how can I make a QLabel to behave like a link? What I mean is that I'd like to be able to click on it and then this would invoke some command on it.

推荐答案

QLabel 已经做到了.

示例代码:

myLabel->setText("<a href="http://example.com/">Click Here!</a>");
myLabel->setTextFormat(Qt::RichText);
myLabel->setTextInteractionFlags(Qt::TextBrowserInteraction);
myLabel->setOpenExternalLinks(true);

相关文章