【Qt学习笔记】禁止改变窗口大小

来源:互联网 发布:四川网络电视台 编辑:程序博客网 时间:2024/06/06 07:27
#include "mainwindow.h"#include "ui_mainwindow.h"MainWindow::MainWindow(QWidget *parent) :    QMainWindow(parent),    ui(new Ui::MainWindow){    ui->setupUi(this);    Qt::WindowFlags flags = 0;    flags |= Qt::WindowMinimizeButtonHint;    setWindowFlags(flags); // 设置禁止最大化    setFixedSize(577,433); // 禁止改变窗口大小。}
原创粉丝点击