QWidget设置全屏显示(有工具栏和无工具栏两种)

无工具栏,即将windows下边工具条覆盖,适用于大屏软件

//设置全屏显示
this->showFullScreen();
this->setWindowState(Qt::WindowFullScreen);
this->move(0, 0);

保持原有工具栏,使用可用范围作为显示

//移动到左上角
resize(QApplication::desktop()->availableGeometry().size());
move(0, 0);

你可能感兴趣的:(Qt常用技巧,qt)