我有两种形式; form 1
,其中包含按钮button1
和MDIParent form
。
点击我想要重定向到button1
的{{1}}。
我在MDIparent form
button1
但是,单击按钮时代码没有响应。
答案 0 :(得分:0)
您必须设置父表单属性(IsMdiContainer = True)
MDIParent f = new MDIParent();
f.MdiParent = this;
f.Show();