...
QT笔记-界面窗口大小设置
窗口大小:设置QT界面窗口X轴长度和Y轴长度
所需添加文件
.pro:无需添加代码
.h:无需添加代码
.cpp:
#include "boke.h"
#include "ui_boke.h"
boke::boke(QWidget *parent) :
QDialog(parent),
ui(new Ui::boke)
{
ui->setupUi(this);
this->setFixedSize(1080,760);
}
boke::~boke()
{
delete ui;
}
运行效果