子应用程序菜单未显示在类似Chrome的应用程序中

时间:2012-11-06 14:01:16

标签: c# winforms

我正在开发类似Chrome的应用程序。我有两个应用程序Say Parent和Child Application。子应用程序包含菜单。 当我将子应用程序的实例附加到父应用程序的选项卡时。单击鼠标时不显示子应用程序中的菜单。

用于附加过程的代码段是

Process P = Process.GetProcessesByName("Child");
P.WaitForInputIdle();
IntPtr handle = P.MainWindowHandle;
SetParent(handle, this.tabPage1.Handle);
MoveWindow(handle, rec.X, rec.Y, rec.Width, rec.Height, true);

我无法对Child应用程序进行任何更改。

0 个答案:

没有答案