1.临时变量 实例化的窗口,show之后会自动被释放。
tipWidget = QtGui.QWidget()
tipWidget.show()
tipWidget会闪一下就被释放了。
应该用成员变量:
self.tipWidget = QtGui.QWidget()
self.tipWidget.show()
建议还应该写一个closeEvent()
时间: 2024-11-10 22:39:54
1.临时变量 实例化的窗口,show之后会自动被释放。
tipWidget = QtGui.QWidget()
tipWidget.show()
tipWidget会闪一下就被释放了。
应该用成员变量:
self.tipWidget = QtGui.QWidget()
self.tipWidget.show()
建议还应该写一个closeEvent()