Set Raspberry Pi Qt application to full screen mode

69 Views Asked by At

How can I get my QT application to go into full screen mode?

I tried many things from the internet but none of them work. For exmple QMainWindow::setWindowFlags( Qt::CustomizeWindowHint | Qt::FramelessWindowHint ) and QMainWindow::showFullScreen( ) (this gives a SIGSEGV).

tia

1

There are 1 best solutions below

0
Kevin Gilbert On BEST ANSWER

Thank you Parisa.H.R that worked!