pyqt5 窗口大小 不可调 怎么设置
pyqt5 窗口大小 不可调 怎么设置
https://blog.csdn.net/aizhaoyu/article/details/11576751
非常简单
一句话
最好的设置位置是在MainWindow.py中
class MainWindow(QMainWindow, Ui_MainWindow):
"""
Class documentation goes here.
"""
def __init__(self, parent=None):
"""
Constructor
@param parent reference to the parent widget
@type QWidget
"""
super(MainWindow, self).__init__(parent)
self.setupUi(self)
self.InitUI()
def InitUI(self):
self.statusBar.showMessage('Ready')
self.setWindowTitle('HelloV0.1')
self.setFixedSize(self.width(),self.height())
添加不可调的代码