How to place widget on top of embedded QWindows
Unsolved
General and Desktop
-
Hi, I've embedded a window into my applicaiton with QtWidget:: createWindowContainer. Is there any way for me to display another widget on top of that window? Thank you
@JackJ30 said in How to place widget on top of embedded QWindows:
QtWidget:: createWindowContainer
returns a QWidget*, so you can put other widgets on top of it like with any other widgets (set the widget returned by createWindowContainer as parent).