qt disable resizing window

Solutions on MaxInterview for qt disable resizing window by the best coders in the world

showing results for - "qt disable resizing window"
Mateo
19 Sep 2020
1// in QMainWindow
2this->statusBar()->setSizeGripEnabled(false);
Adriana
31 Feb 2020
1void MyDialog::MyDialog()
2{
3	// Qt::Widget, Qt::Window or Qt::Dialog.
4  setWindowFlags(Qt::Dialog | Qt::MSWindowsFixedSizeDialogHint);
5}
6