更新版本

This commit is contained in:
2026-06-12 16:01:53 +08:00
parent 62ebc2f589
commit d17a54eb73
23 changed files with 8448 additions and 52 deletions
+15
View File
@@ -0,0 +1,15 @@
from PySide6.QtWidgets import QFrame
from .tool_card_ui import Ui_FrameToolCard
class ToolCard(QFrame, Ui_FrameToolCard):
"""工具卡片类
继承自 QFrameQt 帧基类)和 Ui_FrameToolCardQt Designer 生成的 UI 界面)
负责显示工具的卡片界面,包含工具的图标、名称和描述。
"""
def __init__(self, parent = None) -> None:
super().__init__(parent)
self.setupUi(self)