标签:
System.Runtime.InteropServices 命名空间提供各种各样支持 COM interop 及平台调用服务的成员,此命名空间提供了多种类别的功能。
简单的来说,就是提供在窗体运行时的各种服务。
using System.Runtime.InteropServices; ‘调用命名空间‘
[DllImport("user32")]; ‘引用DLL‘
public static extern int SetParent(int children,int parent); ‘‘‘编写函数过程‘‘‘
‘调用过程‘
‘这里默认MDI窗体为This‘
form1 fm=new form1();
fm.MdiParent=this;
fm.show();
SetParent((int)fm.Handle,(int)this.Handle);
标签:
原文地址:http://blog.csdn.net/sugaryott/article/details/51345926