def initForm(self):
self.initButtonBox()
dataFile = self.installer.dataFile
self.uninstallThread = UninstallThread(dataFile)
self.uninstallThread.progressUpdate.connect(self.on_progressUpdate, Qt.QueuedConnection)
self.becomesVisible.connect(self.on_becomesVisible)
self.buttonClose.setEnabled(False)
self.progressBar.setValue(0)
if not dataFile:
self.label.setText('devnote: Not in a frozen environment, no uninstall file found')
else:
self.label.setText(self.ls('uninstall.processing'))
uninstaller.py 文件源码
python
阅读 23
收藏 0
点赞 0
评论 0
评论列表
文章目录