QT4: 垂直布局管理器

创建一个窗体垂直摆放一个按钮和一个标签,使他们能够随着窗体的垂直缩放而缩放。
实现这个功能需要使用一个布局管理器中的QVBoxLayout进行自动布局,把这两个组件
放入QVBoxLayout中即可。
 
#include <QApplication>
#include <QLabel>
#include <QPushButton>
#include <QVBoxLayout>
#include <QWidget>

int main(int argc, char *argv[])
{
    QApplication app (argc, argv);
 QVBoxLayout *hlayout=new QVBoxLayout();
 QPushButton *button=new QPushButton("im ok");
    QLabel *label = new QLabel("Hello Qt!");
    QWidget *window = new QWidget;
    window->setWindowTitle("main");
    hlayout->addWidget(button);
    hlayout->addWidget(label);
    window->setLayout(hlayout);
    window->show();
    return app.exec();
}
 

QT4: 垂直布局管理器_第1张图片

你可能感兴趣的:(qt,button,IM)