Qt Tip

less than 1 minute read

Qt Tip

내가 자주 쓰는 Qt 기능 모음 Qt는 할 때마다 찾아서 써야해서 매우 귀찮다…

화면조작

  • maximize window
    this->setWindowState(Qt::WindowMaximized);
    
  • fullsize window
    QMainWindow::showFullScreen();
    

Tags:

Categories:

Updated:

Leave a comment