[C#]如何在程式中內嵌其它應用程式
if (HideApplicationTitleBar) SetWindowLong(handle, GWL_STYLE, WS_VISIBLE);
SetParent(handle, this.Handle);
MoveWindow(handle, 0, 0, this.Width, this.Height, true); …
if (handle != IntPtr.Zero)
MoveWindow(handle, 0, 0, this.Width, this.Height, true);
}</pre>