在 C# 面板中嵌入应用程序
将外部应用程序嵌入到 C# 程序的自定义面板中可以在单个用户中无缝集成多个应用程序界面。该技术不是从外部触发应用程序,而是提供了更有凝聚力和更方便的用户体验。
解决方案:利用 Win32 API
Win32 API 提供了嵌入外部的解决方案通过操纵窗口句柄来操作应用程序。关键步骤包括:
代码示例
以下代码演示了如何在 C# 面板中嵌入 notepad.exe:
using System; using System.Diagnostics; using System.Runtime.InteropServices; using System.Windows.Forms; namespace EmbeddedApplication { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { Process p = Process.Start("notepad.exe"); Thread.Sleep(500); // Allow the process to open its window SetParent(p.MainWindowHandle, panel1.Handle); } [DllImport("user32.dll")] static extern IntPtr SetParent(IntPtr hWndChild, IntPtr hWndNewParent); } }
替代方法
而不是使用Thread.Sleep() 中,代码可以使用 WaitForInputIdle 来确定应用程序的窗口何时完全加载:
Process p = Process.Start("notepad.exe"); p.WaitForInputIdle(); SetParent(p.MainWindowHandle, panel1.Handle);
其他资源
有关更全面的指南嵌入外部应用程序,请参考代码项目文章:[Hosting EXE Applications in a WinForm项目](https://www.codeproject.com/Articles/398354/Hosting-EXE-Applications-in-a-WinForm-project)。
以上是如何在 C# 面板中嵌入外部应用程序?的详细内容。更多信息请关注PHP中文网其他相关文章!