我尝试从 QToolTip 中删除投影

发布于 2025-01-10 00:26:34 字数 175 浏览 0 评论 0原文

我想修改我的应用程序中所有工具提示窗口的样式。 请帮忙制作

在此处输入图像描述

I want to modify the style of all the tool tip windows in my application.
Please help to make it

enter image description here

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

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

发布评论

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

评论(1

愚人国度 2025-01-17 00:26:34

我认为只有一个肮脏的黑客:将背景设置为透明,然后复制背景。例如,

ToolTip{
  background: Rectangle{id: bg; color: Qt.rgba(0,0,0,0); }
}

Rectangle{
  id: realBg
  x: bg.x
  y: bg.y
  width: bg.width
  height: bg.height
  color: Qt.rgba(1,1,1,1)
}

我知道它很丑,但它有效。我使用这种技术使用 Canvas 元素而不是矩形作为 BG 来制作自定义阴影

I think there's only a dirty hack for this: Set the background as transparent and duplicate the background then. E.g.

ToolTip{
  background: Rectangle{id: bg; color: Qt.rgba(0,0,0,0); }
}

Rectangle{
  id: realBg
  x: bg.x
  y: bg.y
  width: bg.width
  height: bg.height
  color: Qt.rgba(1,1,1,1)
}

I know it's ugly, but it works.. I used this technique to make custom shadows using a Canvas element instead of a Rectangle as BG

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