这是使用PyQT5作为UI的首次提交,将后端和UI合并到1个工程中,统一使用了Python,没有使用JS和HTML

This commit is contained in:
2025-12-14 12:13:19 +08:00
commit 872b181703
122 changed files with 70944 additions and 0 deletions

22
UI/__init__.py Normal file
View File

@@ -0,0 +1,22 @@
"""
DTM-PyQt5 Frontend GUI Module
This module can be used as a standalone GUI application or
integrated into a larger backend project.
Usage:
As standalone:
python dtmgtUI.py
As subprocess from backend:
import subprocess
subprocess.Popen(['python', 'frontend_gui/dtmgtUI.py'])
"""
__version__ = '1.0.0'
__author__ = 'DTM Team'
# 允许作为模块导入时的接口
from .dtmgtUI import main
__all__ = ['main']