tutorial kit examples example ejemplo creator code c++ qt layout qwidget

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



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(); }