Transparent QML Menu
Unsolved
QML and Qt Quick
-
-
use the style or background component to set the color of the menu
Menu{ background: Rechtangle{ color: "transparent" } }
if you want an arrow to be on top of the menu, I suggest you build it on your own.
@dauuser said in Transparent QML Menu:
use the style or background component to set the color of the menu
Menu{
background: Rechtangle{
color: "transparent"
}
}if you want an arrow to be on top of the menu, I suggest you build it on your own.
As described in my original post this makes the background white, not transparent (see image below).
Using transparency with a window has the same issue, but there is a separate solution for that.