How to change the location of the widgets relative to each other in the Z-coordinate?
Closed due to the fact that the question is too common for the participants
Please correct the question so that it describes the specific problem with sufficient detail to determine the appropriate answer. Do not ask a few questions at once. See “How to ask a good question?” For clarification. If the question can be reformulated according to the rules set out in the certificate , edit it .
|
1 answer
The
void QWidget::raise()method raises the widget to the top of the widget stack inside the parent widget.The
void QWidget::lower()method lowers the widget to the bottom of the widget stack inside the parent widget.The
void QWidget::stackUnder(QWidget * w)moves the widget under the widgetwinside the stack of widgets inside the parent widget.
|