Files
Desktop_BLVStudio/BLV_Studio/PowerSupply/PowerSupplyBase.vb
2025-12-11 10:06:44 +08:00

21 lines
588 B
VB.net

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