使 QLabel 表现得像一个超链接

时间:2023-01-23
本文介绍了使 QLabel 表现得像一个超链接的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

如何让 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);

这篇关于使 QLabel 表现得像一个超链接的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

上一篇:QThread 发出finished() 信号但isRunning() 返回true 并且isFinished() 返回 下一篇:无法在 Qt 样式表中设置背景图像

相关文章

最新文章