我在 pyqt 中的代码很简单:
QtCore.QObject.connect(self.pushButton, QtCore.SIGNAL("clicked()"), self.add_entry)
def add_entry(self):
if QtCore.Qt.WindowFullScreen:
MainWindow.showNormal()
else :
MainWindow.showMaximized()
单击切换按钮时,它会显示全屏,但再次单击时不会恢复到正常屏幕模式。