python
PyQt5 Fixed Window Size
class MyDialog(QtWidgets.QDialog):
def __init__(self):
super(MyDialog, self).__init__()
self.setFixedSize(640, 480)
Was this helpful?
Similar Posts