Suresh R
Suresh R

Reputation: 85

How to set minimized child window to be appear in inside parent window in Qt?

I have opened window with flag Qt::Window inside the parent widget.

Usually if we minimize it, it will go to the task bar of our PC.

But I want it to appear inside the Parent widget, not in the task bar. How to do this?

Upvotes: 1

Views: 454

Answers (1)

Iuliu
Iuliu

Reputation: 4091

I think you're looking for a QMdiArea widget here:

enter image description here

Upvotes: 2

Related Questions