创建表单实例时出现反射错误



我一直在试验一个应用程序,它将扫描程序集,检查任何窗体类,然后查看它们有哪些成员。

我用来查询程序集的代码是:

 Assembly testAssembly = Assembly.LoadFile(assemblyPath);
 Type[]  types = testAssembly.GetTypes();
 textBox1.Text = "";
 foreach (Type type in types)
 {
     if (type.Name.StartsWith("Form"))
     {
         textBox1.Text += type.Name + Environment.NewLine;
         Type formType = testAssembly.GetType();
         Object form = Activator.CreateInstance(formType);       
      }
 }

我用这个来查询一个标准表单:

 using System;
 using System.ComponentModel;
 using System.Windows.Forms;
 namespace TestForm
 {
     public partial class Form1 : Form
     {
         public Form1()
         {
            InitializeComponent();
         }
     }
 }

我的问题是,当代码尝试Activator.CreateInstance(formType)时,我得到一个异常说明:"No parameterless constructor defined for this object."我还可以从检查formType看到'DeclaringMethod: 'formType。抛出了类型为"System"的异常。InvalidOperationException "

我不明白错误信息的形式有一个标准的构造函数,我错过了一些非常明显的?

编辑:type.Name揭示了代码试图实例化为Form1的类型。

您正在尝试创建Assembly的实例,而不是窗体的实例:

     Type formType = testAssembly.GetType();
     Object form = Activator.CreateInstance(formType);       

你应该这样做:

     Object form = Activator.CreateInstance(type);       

BTW,我不会使用类的名称来检查它是否派生自Form,你可以使用IsSubclassOf:

     type.IsSubclassOf(typeof(Form));

对象形式= Activator.CreateInstance(type);

相关内容

  • 没有找到相关文章