This repository has been archived on 2025-11-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
AUTS_OLD/AUTS_ServiceControler/ITaskForm.vb

13 lines
350 B
VB.net
Raw Permalink Normal View History

2024-03-11 16:32:52 +08:00
Public Interface ITaskForm
''' <summary>设置窗体父容器,并显示</summary>
Sub ShowForm(parentControl As Control)
''' <summary> 获取参数 </summary>
Function GetParams() As Dictionary(Of String, String)
''' <summary> 设置参数 </summary>
Sub SetParam(params As Dictionary(Of String, String))
End Interface