我想修改我的应用程序中所有工具提示窗口的样式。 请帮忙制作
I want to modify the style of all the tool tip windows in my application.Please help to make it
我认为只有一个肮脏的黑客:将背景设置为透明,然后复制背景。例如,
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.
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
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(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.
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