讓視窗充滿電腦螢幕

世界發表於2020-10-30
// 加一個標頭檔案
  #include <QDesktopWidget>
//獲取長寬就行
  int currentScreenWid = QApplication::desktop()->width()
  int currentScreenHei  = QApplication::desktop()->height();
  mainwindow->resize(currentScreenWid,currentScreenHei);

相關文章