mirror of
https://github.com/LC044/WeChatMsg
synced 2025-05-21 15:28:21 +08:00
36 lines
898 B
Python
36 lines
898 B
Python
import ctypes
|
|
import sys
|
|
|
|
from PyQt5.QtWidgets import QApplication, QMessageBox, QWidget
|
|
|
|
from app.ui_pc.tool.pc_decrypt import pc_decrypt
|
|
|
|
ctypes.windll.shell32.SetCurrentProcessExplicitAppUserModelID("WeChatReport")
|
|
|
|
|
|
class ViewController(QWidget):
|
|
def __init__(self):
|
|
super().__init__()
|
|
|
|
self.viewMainWIn = None
|
|
self.viewDecrypt = None
|
|
|
|
def loadPCDecryptView(self):
|
|
"""
|
|
登录界面
|
|
:return:
|
|
"""
|
|
self.viewDecrypt = pc_decrypt.DecryptControl()
|
|
self.viewDecrypt.DecryptSignal.connect(self.show_success)
|
|
self.viewDecrypt.show()
|
|
|
|
def show_success(self):
|
|
QMessageBox.about(self, "解密成功", "数据库文件存储在\napp/DataBase/Msg\n文件夹下")
|
|
|
|
|
|
if __name__ == '__main__':
|
|
app = QApplication(sys.argv)
|
|
view = ViewController()
|
|
view.loadPCDecryptView()
|
|
sys.exit(app.exec_())
|