我正在开发类似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应用程序进行任何更改。