(self)
| 99 | |
| 100 | #self.close() |
| 101 | def run2(self): |
| 102 | if self.ui.lineEdit.text() == "": |
| 103 | # 弹出错误提示 |
| 104 | self.ui.lineEdit.setStyleSheet("border: 1px solid red;") |
| 105 | return |
| 106 | imagename = self.ui.lineEdit.text() |
| 107 | profile = self.ui.comboBox.currentText() |
| 108 | command = f"python volpro.py {imagename}" |
| 109 | subprocess.Popen(command, shell=True) |
| 110 | #加载filescan列表 |
| 111 | def load_filescan(self): |
| 112 | #清空 |
nothing calls this directly
no outgoing calls
no test coverage detected