解决方案
100
你找找FindWindow和SetParent这两个windowsAPI的用法,就有个基本思路了。
100
SetParent(appWin, this.Handle);//this在这里是Panel控件 4 // Remove border and whatnot 5 SetWindowLong(appWin, GWL_STYLE, WS_VISIBLE); 7 // Move the window to overlay it on this window 8 MoveWindow(appWin, 0, 0, this.Width, this.Height, true);
http://www.cnblogs.com/bitzhuwei/archive/2012/05/24/SmileWei_EmbeddedApp.html