初始化

This commit is contained in:
2025-12-11 10:06:44 +08:00
commit f6cfed9a05
1203 changed files with 1461923 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
Public MustInherit Class PowerSupplyBase
Public Enum PowerSupplyType
PowerSupplyForm
End Enum
'窗体容器
Public L_TabControl As TabControl
'根据选择的类型添加窗体
Public MustOverride Function AddForm(pst As PowerSupplyType, formname As String, formtitle As String, ParamArray par() As Object) As Boolean
'获取窗体数据
Public MustOverride Function GetFormParameter(pst As PowerSupplyType, Partype As Integer) As Object
'删除添加的窗体
Public MustOverride Sub RemoveForm(pst As PowerSupplyType)
End Class