Qt---去掉标题栏后,最大化应用程序窗口时,窗口遮住了任务栏的问题
时间:2018-08-31 00:14:39
收藏:0
阅读:1454
不应该使用:
this->showFullScreen();
或
this->showMaximized();
而应该使用:
this->setGeometry(QApplication::desktop()->availableGeometry());
原文:https://www.cnblogs.com/granx/p/9563361.html
评论(0)