·您的位置: 首页 » 资源教程 » 编程开发 » ASP.NET » 使用反射实现根据名称动态创建窗体的几种方法

使用反射实现根据名称动态创建窗体的几种方法

类别: ASP.NET教程  评论数:0 总得分:0
 方法1使用activator方法创建实例

Dim str As String

        str = \"Form2\"  \'必须是 命名空间++窗体类名(这里假设为命名空间为空)

        Dim tempAssembly As [Assembly] = [Assembly].GetExecutingAssembly()

        Dim t As Type = tempAssembly.GetType(str)

        Dim args() As Object = Nothing

        Dim o As Object = System.Activator.CreateInstance(t, args)

        CType(o, Form2).Show()

        \'Dim frm2 As Form = CType(tempAssembly.CreateInstance(str), Form)

        \'frm2.Show()

////////////////方法2使用构造函数的invoke方法创建实例。

        Dim ty() As Type = {} 该构造函数没有参数

        Dim c As ConstructorInfo = t.GetConstructor(ty) 获得没有参数的构造函数

        Dim args1() As Object = Nothing ‘参数为空

        Dim p As Object = c.Invoke(Nothing) ‘创建实例时参数为空

        CType(p, Form2).Show()

方法3 ///////////////////////////////////////使用assembly.createinstance方法创建实例

      Dim str As String

        str = \"Form2\"  \'必须是 命名空间++窗体类名

        Dim tempAssembly As System.Reflection.Assembly = System.Reflection.Assembly.GetExecutingAssembly()

 

        Dim frm2 As Form = CType(tempAssembly.CreateInstance(str), Form)

        frm2.Show()

-= 资 源 教 程 =-
文 章 搜 索
关键词:
类型:
范围:
纯粹空间 softpure.com
Copyright © 2006-2008 暖阳制作 版权所有
QQ: 15242663 (拒绝闲聊)  Email: faisun@sina.com
 纯粹空间 - 韩国酷站|酷站欣赏|教程大全|资源下载|免费博客|美女壁纸|设计素材|技术论坛   Valid XHTML 1.0 Transitional
百度搜索 谷歌搜索 Alexa搜索 | 粤ICP备19116064号-1