是否可以在窗体的面板中打开应用程序,如Google chrome

本文关键字:应用程序 chrome Google 窗体 是否 | 更新日期: 2023-09-27 17:51:12

我不知道这是否可能

我可以在外面单独打开

System.Diagnostics.Process.Start("FileName");

我也试过了

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Diagnostics;
using System.Runtime.InteropServices;
using System.Threading;
namespace wmpkhela
{    
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        private void button1_Click(object sender, EventArgs e)
        {
            Process p = Process.Start(@"notepad.exe");
            p.WaitForInputIdle();            
            SetParent(p.MainWindowHandle,  panel1..Handle);
        }![enter image description here][1]
        [DllImport("user32.dll")]
        static extern IntPtr SetParent(IntPtr hWndChild, IntPtr hWndNewParent);
        private void Form1_Load(object sender, EventArgs e)
        {
        }
    }
}

但这并没有像我期望的那样工作

是否可以在窗体的面板中打开应用程序,如Google chrome

我猜你在找这个可能是重复的看这个问题

使用这两个函数在面板中放置任何其他进程。

[DllImport("user32.dll", SetLastError = true)]
private static extern IntPtr SetParent(IntPtr hWndChild, IntPtr hWndNewParent);
[DllImport("user32.dll", EntryPoint = "SetWindowPos")]
public static extern IntPtr SetWindowPos(IntPtr hWnd, int hWndInsertAfter, int x, int Y, int cx, int cy, int wFlags);