我的 winform 应用程序中有很多对话框,当我需要加载时,我会为每个对话框执行此操作
Dim frm As New Settings
frm.ShowDialog()
frm = Nothing
我在想是否有可能有这样的例程
sub LoadDialog(byval item as form)
' code to load specific form passd here
end sub
然后我这样打电话loadDialog(customersDialog)
。CustomerDialog 是一个表单
关于如何做到这一点的想法?