MainWindow::MainWindow(QWidget *parent): QMainWindow(parent), ui(new Ui::MainWindow)
{ui->setupUi(this);this->resize(ui->label_img->width(),ui->label_img->height());//图片自适应窗口大小ui->label_img->setScaledContents(true);//图片置于底层ui->label_img->lower();//固定大小setFixedSize(this->width(),this->height());this->setWindowTitle("驾校考试登入系统");this->setWindowFlags(Qt::Dialog|Qt::WindowCloseButtonHint);
}
运行结果