在c# winform项目中,有一个form窗体和两个Panel控件(panel1和panel2),
panel1的size大小为300*200,location位置为0,0
panel2的size大小为300*200,location位置为320,0
用下面的代码,无法将word句柄嵌入到pane2控件并充满整个panel2控件中显示,设置大小与panel2一样。
请问如何修改下面的代码,谢谢。
IntPtr wordWnd = API.FindWindow("word", null); \\获取word句柄
API.SetWindowPos(wordWnd, IntPtr.Zero, this.panel2.Location.X, this.panel2.Location.Y, 300, 200, 0);
API.SetParent(wordWnd, this.panel2.Handle);
------解决思路----------------------
http://www.codeproject.com/Tips/487566/OLE-container-surrogate-for-NET