C# MDI 子窗体被父窗体控件挡住

 

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);

 

C# MDI 子窗体被父窗体控件挡住,布布扣,bubuko.com

C# MDI 子窗体被父窗体控件挡住

上一篇:Unity IOC注入详细配置(MVC,WebApi)


下一篇:子类化和超类化区别(介绍Windows的窗口、消息、子类化和超类化)(转)