我正在尝试根据doubleclick事件上树视图的选定节点启动特定表单。我需要用来启动表单的代码有点笨重,因为在启动新实例之前,我必须确保表单没有处理,并且表单尚未打开。我希望所有这些检查都发生在函数末尾的一个地方,这意味着我必须能够将正确的表单类型传递给最后的代码。我正在尝试使用System.Type执行此操作,但这似乎不起作用。有人能指出我正确的方向吗?
With TreeView.SelectedNode
Dim formType As Type
Select Case .Text
Case "Email to VPs"
formType = EmailForm.GetType()
Case "Revise Replacers"
formType = DedicatedReplacerForm.GetType()
Case "Start Email"
formType = EmailForm.GetType()
End Select
Dim form As formType
Dim form As formType
Try
form = CType(.Tag, formType)
If Not form.IsDisposed Then
form.Activate()
Exit Sub
End If
Catch ex As NullReferenceException
'This will error out the first time it is run as the form has not yet
' been defined.
End Try
form = New formType
form.MdiParent = Me
.Tag = form
CType(TreeView.SelectedNode.Tag, Form).Show()
End With
答案 0 :(得分:1)
你不能new
一个类型。 Type是运行时类型信息,new
需要在编译时知道类型。
使用反射(Activator)或泛型。
抱歉,我不懂VB,我不能在VB中给你一个代码示例。
c#示例:
T CreateForm<T>() where T : Form, new()
{
return new T();
}
或
Form CreateForm(Type t)
{
return (Form)Activator.CreateInstance(t);
}