从c#字符串中获取控件类型

本文关键字:控件 类型 获取 字符串 | 更新日期: 2023-09-27 18:03:15

我有一个这样的字符串:

typeStr = label1.GetType().ToString();

现在我想通过typeStr反过来得到这个控制的type

我尝试了一些功能,如Type.GetType(typeStr),但没有帮助。

是否有简单的方法获得type ?

从c#字符串中获取控件类型

可以传递Type Fullname

Type type = Type.GetType("System.Windows.Forms.Label");

这将创建类型,并创建对象的实例,您可以使用Activator.CreateInstance

object obj = Activator.CreateInstance(type);



AppDomain.CurrentDomain.GetAssemblies()中加载Type时使用

   private void btnAddDymanicLabel_Click(object sender, EventArgs e)
    {
        Type type = GetTypeNameFromDomain("System.Windows.Forms.Label");
        Label lbl = (Label) Activator.CreateInstance(type);
        this.Controls.Add(lbl);
        lbl.Text = "dynamic created control";

    }
    private Type GetTypeNameFromDomain(string typename)
    {
        return AppDomain.CurrentDomain.GetAssemblies().SelectMany(assembly => assembly.GetTypes().Where(type => type.FullName == typename)).FirstOrDefault();
    }

一个简单的例子:

static void Main(string[] args)
{
    Type type = Type.GetType("System.Int32");
    object obj = Activator.CreateInstance(type);
    int num = (int) obj;
    num = 10;
    Console.WriteLine(num); // prints : 10
}

尝试使用

获取名称
typeStr = label1.GetType().GetFullName();
然后

type = Type.GetType(typeStr);

您的意思是您只想从这样的字符串中获取该类型的实例吗

classname instance = Activator.CreateInstance("<assemblyname>","<classname>") as classname;