当我们使用 Qlabel 作为超链接文本时,如何在正常状态下删除超链接文本下方的行?

发布于 2024-12-11 22:30:23 字数 73 浏览 0 评论 0原文

我希望仅当我们悬停或按非正常状态的超链接文本时才显示该行,并且我也想更改文本的颜色。我尝试过 Qpalette 但发现颜色没有变化。

I want the line to appear only when we hovered or press the hyperlink text not in normal state and i want to change the color of the text also. i have tried Qpalette but i found no change in color.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鹤仙姿 2024-12-18 22:30:23

您可以向锚标记添加样式属性:

QLabel *label = new QLabel("<a style='text-decoration:none' "
                           "href='http://www'>your link</a>);

请参阅 HTML 子集 Qt 的富文本小部件支持以获取详细信息。

You can add a style attribute to your anchor tag:

QLabel *label = new QLabel("<a style='text-decoration:none' "
                           "href='http://www'>your link</a>);

See the HTML subset supported by Qt's rich-text widgets for details.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文