当前位置:  编程技术>.net/c#/asp.net

C#通过WIN32 API实现嵌入程序窗体

    来源: 互联网  发布时间:2014-11-04

    本文导语:  本文实例讲述了C#通过WIN32 API实现嵌入程序窗体的方法,分享给大家供大家参考。具体如下: 这是一个不使用COM,而是通过WIN32 API实现的示例, 它把写字板程序嵌在了自己的一个面板中。 这么做可能没有实际意义, 因为两个程序...

本文实例讲述了C#通过WIN32 API实现嵌入程序窗体的方法,分享给大家供大家参考。具体如下:

这是一个不使用COM,而是通过WIN32 API实现的示例, 它把写字板程序嵌在了自己的一个面板中。

这么做可能没有实际意义, 因为两个程序之前没有进行有价值的交互, 这里仅仅是为了演示这么做到, 以下是详细注释过的主要源代码。

我们把它封装到一个类中:

using System; 
using System.Collections.Generic; 
using System.Linq; 
using System.Text; 
using System.Diagnostics; 
using System.Runtime.InteropServices; 
using System.Windows.Forms; 
namespace System.Windows.Forms 
{ 
  class InsertWindow 
  { 
    ///  
    /// 将程序嵌入窗体 
    ///  
    /// 容器 
    /// 程序名 
    public InsertWindow(Panel pW,string appname) 
    { 
      this.pan = pW; 
      this.LoadEvent(appname); 
      pane(); 
    } 
    ~InsertWindow() 
    { 
      if (m_innerProcess!=null) 
      { 
        m_innerProcess.Dispose(); 
      } 
    } 
    #region 函数和变量声明 
    /* 
    * 声明 Win32 API 
    */ 
    [DllImport("user32.dll")] 
    static extern IntPtr SetParent(IntPtr hWndChild, 
      IntPtr hWndNewParent 
    ); 
    [DllImport("user32.dll")] 
    static extern Int32 GetWindowLong(IntPtr hWnd, 
      Int32 nIndex 
    ); 
    [DllImport("user32.dll")] 
    static extern Int32 SetWindowLong(IntPtr hWnd, 
      Int32 nIndex, 
      Int32 dwNewLong 
    ); 
    [DllImport("user32.dll")] 
    static extern Int32 SetWindowPos(IntPtr hWnd, 
      IntPtr hWndInsertAfter, 
      Int32 X, 
      Int32 Y, 
      Int32 cx, 
      Int32 cy, 
      UInt32 uFlags 
    ); 
    /* 
     * 定义 Win32 常数 
     */ 
    const Int32 GWL_STYLE = -16; 
    const Int32 WS_BORDER = (Int32)0x00800000L; 
    const Int32 WS_THICKFRAME = (Int32)0x00040000L; 
    const Int32 SWP_NOMOVE = 0x0002; 
    const Int32 SWP_NOSIZE = 0x0001; 
    const Int32 SWP_NOZORDER = 0x0004; 
    const Int32 SWP_FRAMECHANGED = 0x0020; 
    const Int32 SW_MAXIMIZE = 3; 
    IntPtr HWND_NOTOPMOST = new IntPtr(-2); 
    // 目标应用程序的进程. 
    Process m_innerProcess = null; 
    #endregion 
    #region 容器 
    private Panel pan = null; 
    public Panel panel1 
    { 
      set { pan = value; } 
      get { return pan; } 
    } 
    private void pane() 
    { 
      panel1.Anchor = AnchorStyles.Left | AnchorStyles.Top | 
       AnchorStyles.Right | AnchorStyles.Bottom; 
      panel1.Resize += new EventHandler(panel1_Resize); 
    } 
    private void panel1_Resize(object sender, EventArgs e) 
    { 
      // 设置目标应用程序的窗体样式. 
      IntPtr innerWnd = m_innerProcess.MainWindowHandle; 
      SetWindowPos(innerWnd, IntPtr.Zero, 0, 0, 
        panel1.ClientSize.Width, panel1.ClientSize.Height, 
        SWP_NOZORDER); 
    } 
    #endregion 
    #region 相应事件 
    private void LoadEvent(string appFile) 
    { 
      // 启动目标应用程序. 
      m_innerProcess = Process.Start(appFile); 
      m_innerProcess.StartInfo.WindowStyle = ProcessWindowStyle.Hidden; //隐藏 
      // 等待, 直到那个程序已经完全启动.  
      m_innerProcess.WaitForInputIdle(); 
      // 目标应用程序的主窗体. 
      IntPtr innerWnd = m_innerProcess.MainWindowHandle; 
      // 设置目标应用程序的主窗体的父亲(为我们的窗体). 
      SetParent(innerWnd, panel1.Handle); 
      // 除去窗体边框. 
      Int32 wndStyle = GetWindowLong(innerWnd, GWL_STYLE); 
      wndStyle &= ~WS_BORDER; 
      wndStyle &= ~WS_THICKFRAME; 
      SetWindowLong(innerWnd, GWL_STYLE, wndStyle); 
      SetWindowPos(innerWnd, IntPtr.Zero, 0, 0, 0, 0, 
        SWP_NOMOVE | SWP_NOSIZE | SWP_NOZORDER | SWP_FRAMECHANGED); 
      // 在Resize事件中更新目标应用程序的窗体尺寸. 
      panel1_Resize(panel1, null); 
    } 
#endregion
  }
}

然后在窗口的load事件中加入详细代码如下:

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.Runtime; 
using System.Runtime.InteropServices; 
using System.Diagnostics; 
namespace 将程序窗口嵌入到任务栏中 
{ 
  public partial class Form1 : Form 
  { 
    private System.Windows.Forms.Panel panel1; 
    public Form1() 
    { 
      InitializeComponent(); 
      this.panel1 = new System.Windows.Forms.Panel(); 
      this.SuspendLayout(); 
      //  
      // panel1 
      //  
      this.panel1.Dock = System.Windows.Forms.DockStyle.Fill; 
      this.panel1.Location = new System.Drawing.Point(0, 0); 
      this.panel1.Name = "panel1"; 
      this.panel1.Size = new System.Drawing.Size(292, 273); 
      this.panel1.TabIndex = 0; 
      this.Controls.Add(this.panel1); 
      Load += new EventHandler(Form1_Load); 
    } 
    private void Form1_Load(object sender, EventArgs e) 
    { 
      //string sPath = Environment.GetEnvironmentVariable("windir");//获取系统变量 windir(windows)  
      const string appFile = 
        "C:\Program Files\Windows NT\Accessories\wordpad.exe"; 
      InsertWindow insertwin = new InsertWindow(panel1, appFile); 
    } 
  } 
}

希望本文所述对大家的C#程序设计有所帮助。


    
 
 

您可能感兴趣的文章:

  • c#通过委托delegate与Dictionary实现action选择器代码举例
  • C#通过反射创建自定义泛型
  • .NET下 c#通过COM组件操作并导出Excel实例代码
  • c#通过unicode编码判断字符是否为中文示例分享
  • C# datatable 不能通过已删除的行访问该行的信息处理方法
  • c# 通过经纬度查询 具体的地址和区域名称
  • c#通过httphandler添加水印的代码
  • c#通过进程调用cmd判断登录用户权限代码分享
  • C#实现通过winmm.dll控制声音播放的方法
  • C#通过IComparable实现ListT.sort()排序
  • c#通过ip获取地理信息
  • c# HttpWebRequest通过代理服务器抓取网页内容应用介绍
  • C#实现通过程序自动抓取远程Web网页信息的代码
  • C#通过接口与线程通信(捕获线程状态)示例代码
  • 通过C#调用cmd来修改服务启动类型
  • C#通过XML节点属性/属性值读取写入XML操作代码实例
  • C#实现通过模板自动创建Word文档的方法
  • C#通过经纬度计算2个点之间距离的实现代码
  • c#通过xpath读取xml示例
  • 关于jbuilder的问题:如何连接菜单事件,如何通过按钮显示别的窗体,如何显示对话框
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 有什么软件可以通过网络把文件从windows发送到嵌入式机的linux
  • c#通过xpath读取xml示例 iis7站长之家
  • 想搞嵌入式驱动的开发,请大虾给个简单例程(通过SPI读写外扩存储芯片),以及开发步骤及应注意的地方,怎么加入内核和使用该驱动?谢谢
  • 嵌入式下通过串口连接4线触摸屏如何搞呢?驱动?
  • 200分!!嵌入式Linux下通过TCP访问服务器,Socket被服务器重置,错误号104??(高手请进)解决后加送100分!!!
  • 关于嵌入式linux编译最简单内核模块不能通过的问题!
  • 通过javascript实现DIV居中,兼容各浏览器版本
  • applet可以不通过数字签名,通过设置IE直接在本地访问本地文件吗
  • php通过socket_bind()设置IP地址代码示例
  • 我使用.net编译通过,但是使用g++编译不能通过。总是提示我undefined reference to ~myclass()
  • 通过javascript库JQuery实现页面跳转功能代码
  • 紧急求救!能通过jdbc怎样连接sqlsever 然后通过 for xml 关键字得到xml流吗?
  • linux下通过crond实现自动执行程序
  • 我想我的网站屏蔽掉通过某些网站过来的访问,我想通过htaccess 文件来做,请大家帮帮我。
  • 通过docker commit命令保存对docker容器的修改
  • 如何通过INTERNET访问通过共项一条线路上网的局域网中的机器???
  • 通过docker run命令运行新的docker镜像
  • 为什么g++编译通过了,而gcc却编译通过不了???
  • 通过docker ps命令检查运行中的docker镜像
  • 请指点: 在windows下能否通过程序来获取linux下的用户列表,甚至通过自己写的windows程序界面增加修改linux的用户
  • Session id实现通过Cookie来传输方法及代码参考
  • Jbuilder第一次编译说缺包,引入通过!然后把原来引入的注释,又通过!上帝,救我!
  • 通过docker search命令搜索可用docker镜像
  • 红旗Linux主机可以通过127.0.0.1访问,但如何是连网的Win2000机器通过Linux的IP去访问Linux
  • Python3通过request.urlopen实现Web网页图片下载
  • 请指点: 在windows下能否通过程序来获取linux下的用户列表,甚至通过自己写的windows程序界面增加修改linux的用户 100分相赠
  • Python通过正则表达式获取,去除(过滤)或者替换HTML标签的几种方法
  • 工作站Redhat Linux7.2如何通过NT4.0 proxy代理服务器上网,我不能通过其验证!请高手指点思路和方法!


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3