修改了部分命名规则

This commit is contained in:
Yorusora
2025-05-20 15:20:54 +08:00
parent a0cf874d18
commit cb7e79a86d
10 changed files with 126 additions and 75 deletions

View File

@ -226,7 +226,15 @@ class MainWindow(QMainWindow, Ui_Signal_Label):
def __slot_btn_SA_label__(self):
self.SA_label = MainWindow_SA_label()
self.SA_label.show()
root_path = self.ui.plainTextEdit_root_path.toPlainText()
sampID = self.ui.comboBox_sampID.currentText()
if not self.check_root_path():
return
if not self.check_sampID():
return
self.SA_label.show(root_path, int(sampID))
# 默认最大化显示而非固定分辨率
self.SA_label.showMaximized()
def seek_sampID(self, path):
if not Path(path).exists():