c++ - kit - ¿Cómo puedo agregar widgets de tamaño variable en Qt Creator?
qt documentation (2)
¿Cómo puedo agregar widgets de tamaño variable en Qt Creator?
Especialmente widgets en QVBoxLayout
o QHBoxLayout
Debe usar diseños si desea que sus widgets sean redimensionables: http://doc.qt.io/qt-5/layout.html
Ejemplo:
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QWidget* w = new QWidget;
QVBoxLayout* l = new QVBoxLayout;
w->setLayout(l);
QPushButton* b = new QPushButton("hello");
b->setSizePolicy(QSizePolicy::Expanding,QSizePolicy::Expanding);
l->addWidget(b);
w->show();
return app.exec();
}