在qt界面引入按钮,或者其他什么设置
在继承函数中链接该按钮
self.actionImport.triggered.connect(self.openImage)
添加对应函数处理openImage
from PyQt5.QtWidgets import QMainWindow, QApplication, QFileDialog
try:
fname, _ = QFileDialog.getOpenFileName(self, 'open file', '/', "License files (*.dat)")
licence_check_pass = license.key_check(fname)
except:
print(f'ERROR: License not avaliable\n')
这样就可以了
网友评论