Answers for "qt designer main window not resizable"

C++
1

qt disable resizing window

void MyDialog::MyDialog()
{
	// Qt::Widget, Qt::Window or Qt::Dialog.
  setWindowFlags(Qt::Dialog | Qt::MSWindowsFixedSizeDialogHint);
}
Posted by: Guest on January-09-2021

Code answers related to "qt designer main window not resizable"

Browse Popular Code Answers by Language