Important: Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct
how to hide the horizontalLayout?
-
Hi, Guys.
i want hide the horizontalLayout.
i can't finding setvisible and hide.
-
A layout can not be hidden since they are not widgets and does not have a setVisible() function.
You have to create a widget that you can hide, that contains the layout and the other widgets that should be hidden, then you hide the widget instead of the layout.
QWidget* myWidget = new QWidget(); QHBoxLayout * layout = new QHBoxLayout(myWidget); layout->addWidget(new QLabel("Label")); myWidget->setVisible(false);