C#在表单面板中打开其他程序

时间:2017-11-05 09:30:07

标签: c# process exe panel

您好我是韩国的初学者。

我正在制作。程序。该程序在一个表单上运行三个exe(用c ++,c#开发),并将程序放入面板中。

现在我将程序用C ++或其他语言放入面板中。但是,使用C#构建的Windows程序不会保留在面板上。 这是我的代码的一部分:

    [DllImport("user32.dll")]
    static extern IntPtr SetParent(IntPtr hWndChild, IntPtr hWndNewParent);
    [DllImport("user32.dll")]
    static extern int SetWindowLong(IntPtr hWnd, int nIndex, int dwNewLong);

    [DllImport("user32.dll")]
    static extern bool MoveWindow(IntPtr Handle, int x, int y, int w, int h, bool repaint);

    static readonly int GWL_STYLE = -16;
    static readonly int WS_VISIBLE = 0x10000000;


    private void Form1_Load(object sender, EventArgs e)
    {

        try
        {
            Process p = Process.Start("C:\\Users\\sonmi\\OneDrive\\Japan_Bunge_alpha\\Japan_Bunge_alpha\\bin\\Debug\\Japan_Bunge_alpha"); //C# program
            Process p2 = Process.Start("C:\\Users\\sonmi\\Desktop\\astana_test\\astana\\Server\\Server_CES"); //C++ program

            p.WaitForInputIdle();

            Thread.Sleep(100);
            SetParent(p.MainWindowHandle, this.Handle);
            SetWindowLong(p.MainWindowHandle, GWL_STYLE, WS_VISIBLE);
            MoveWindow(p.MainWindowHandle, 0, 0, panel1.Width, panel1.Height, true);


            p2.WaitForInputIdle();
            SetParent(p2.MainWindowHandle, panel2.Handle);
            SetWindowLong(p2.MainWindowHandle, GWL_STYLE, WS_VISIBLE);
            MoveWindow(p2.MainWindowHandle, 0, 0, panel2.Width, panel2.Height, true);


        }

我现在使用了两个面板,但是在测试结束后我会添加更多面板。 我不知道问题出在哪里。

2 个答案:

答案 0 :(得分:0)

对于C#应用程序,您可以将应用程序加载到当前的AppDomain中,并将其视为库。将它添加到您的项目引用中。如何初始化并将其放入面板将取决于引用的应用程序的设计方式。

您可能必须自己初始化该应用程序的主窗体并以此方式设置父窗体。

答案 1 :(得分:0)

Thread.Sleep(100);
SetParent(p.MainWindowHandle, this.Handle); <-- panel1.Handle
SetWindowLong(p.MainWindowHandle, GWL_STYLE, WS_VISIBLE);