美文网首页
通过窗口打开文件

通过窗口打开文件

作者: 国宝级初学者 | 来源:发表于2022-01-07 09:57 被阅读0次

    在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')

    这样就可以了

    相关文章

      网友评论

          本文标题:通过窗口打开文件

          本文链接:https://www.haomeiwen.com/subject/zgqjcrtx.html