111,126
社区成员
发帖
与我相关
我的任务
分享
Assembly assem = Assembly.Load("xxxxxx");
Form frm = (Form)assem.CreateInstance("WindowsApplication1.Form1");
frm.Width = 100;
frm.Height = 100;
frm.Show();