using System.Runtime.InteropServices; [DllImport("user32")]
public static extern int SetParent(int hWndChild, int hWndNewParent); Form2 f2 = new Form2();
f2.MdiParent = this;
f2.Show();
SetParent((int)f2.Handle, (int)this.Handle);
相关文章
- 10-29机房收费-----使子窗体显示父窗体的picture控件上
- 10-29[转]- Winform 用子窗体刷新父窗体,子窗体改变父窗体控件的值
- 10-29winform 将子窗体显示在父窗体的TabControl控件上
- 10-29mdi父窗体如何向子窗体发送数据
- 10-29WinForm--(子窗体改变父窗体中控件的属性-委托)
- 10-29C#窗体放大时,子控件无改变且仍处于居中显示的实现
- 10-29【转】C# 子窗体如何调用父窗体的方法
- 10-29C#如何在子窗体获取父窗体的实例
- 10-2920150812 Asp.net 父窗体获取子窗体的返回值,更新父窗体文本控件(应用)
- 10-29解决WinForm(C#)中MDI子窗体最大化跑偏的问题