QPaintEvent over QLabel
Unsolved
General and Desktop
-
Hi everyone,
Is it possible to draw with paintevent of QWidget(A)
Over this child(A)I have some QLabel child of QWidget(A) i use paintevent in A to draw something, but it appers behind the QLabels... :(
thx for help.
-
@Franckynos said in QPaintEvent over QLabel:
I have some QLabel child of QWidget(A) i use paintevent in A to draw something, but it appers behind the QLabels... :(
child widgets are always drawn above the parent widgets, due to their stacking order
Why do you really need to draw over a child widget?