我有一个这样的课程:
public class ChildForm extends System.Windows.Forms.Form{
public int childId;
}
我称之为:
Type baseType = Type.GetType("ChildForm");
System.Windows.Forms.Form formCall = (Form)System.Activator.CreateInstance(baseType);
//How can i set childId properties here?
ChildForm可以是多种形式,这就是为什么我需要使用反射并使用父窗体来显示它。但我不知道如何设置子属性。这可以通过属性注入来完成吗? 提前谢谢。