我尝试使用字符串名称创建实例,即类名 bt GetType 方法返回 null
namespace DocSys
{
public class Documents
{
Control ctlControl = new Control();
//strProgID= DocCtl.Button
Type type = Type.GetType(strProgID); // null Value in Type type
ctlControl = (Control)Activator.CreateInstance(t);
}
}
目前 strProgID 包含 DocCtl.Button(Button 是一个用户控件,它的命名空间是 DocCtl)
我可以创建一个 strProgID 的对象吗