码迷,mamicode.com
首页 > Windows程序 > 详细

模态关联窗体

时间:2016-09-01 00:15:30      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:

 

Form1 f1 = new Form1();

IntPtr intPtr ;
int hwnd = Globals.ThisAddIn.Application.Hwnd;//获取句柄

//intPtr = new IntPtr(hwnd);  //方法一

intPtr = Process.GetCurrentProcess().MainWindowHandle; //方法二

NativeWindow win = NativeWindow.FromHandle(intPtr );
f1.Show(win);

模态关联窗体

标签:

原文地址:http://www.cnblogs.com/valor-xh/p/5827961.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!