How to place widget on top of embedded QWindows
-
wrote on 28 Feb 2025, 07:47 last edited by
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
-
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).
2/2