/// <summary>
/// 打开新的子窗体
/// </summary>
/// <param name="strName">窗体的类名</param>
/// <param name="AssemblyName">窗体所在类库的名称</param>
public static void CreateForm(string strName, string AssemblyName)
{
string path = AssemblyName;//项目的Assembly选项名称
string name = strName; //类的名字
Form doc = (Form)Assembly.Load(path).CreateInstance(name);
doc.Show();
}
private void button1_Click(object sender, EventArgs e)
{
//获取单击的Button名称
string btnname = ((Button)sender).Text;
CreateForm("WindowsFormsApplication1." + btnname, "WindowsFormsApplication1");
}
原文:http://www.sufeinet.com/thread-2984-1-1.html
本人的博客不再维护从2013年就不再维护了
需要我帮助的朋友请到我的个人论坛 http://www.sufeinet.com 进行讨论,感谢大家对我的支持!