首页 查找窗口句柄

查找窗口句柄

举报
开通vip

查找窗口句柄查找窗口句柄 查找窗口句柄 - FindWindow 2009-04-20 18:55 声明: Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long 此函数的作用是寻找窗口列表中第一个符合指定条件的顶级窗口,获得句柄后,可用api函数GetWindowText取得这个窗口的标题。 返回值...

查找窗口句柄
查找窗口句柄 查找窗口句柄 - FindWindow 2009-04-20 18:55 声明: Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long 此函数的作用是寻找窗口列 关于同志近三年现实表现材料材料类招标技术评分表图表与交易pdf视力表打印pdf用图表说话 pdf 中第一个符合指定条件的顶级窗口,获得句柄后,可用api函数GetWindowText取得这个窗口的标题。 返回值 Long,得到找到窗口的句柄。如未找到相符窗口,则返回零。 参数说明: 第一个参数lpClassName为类名,或设为零,表示接收任何类 第二个参数lpWindowName为包含的标题文本,或设为零,表示接收任何窗口标题 一般很少 要求 对教师党员的评价套管和固井爆破片与爆破装置仓库管理基本要求三甲医院都需要复审吗 同时按类与窗口名搜索,我们可传递vbNullString常数。如果想列举出系统所有的窗口句柄时,可以使用循环,并将两个参数都设为vbNullString 比如查找标题为“我的电脑”的窗口: Dim sHwnd As Long sHwnd = FindWindow(vbNullString, "我的电脑") 成功则返回标题为“我的电脑”的窗口句柄,否则返回0 真有意思 [ZU14.CN] C#用 SendKyes 结合 Process 或 API FindWindow、SendMessage(PostMessage) 等控制外部程序 2008年10月28日 首页,要说明几个概念: , Win32 平台是 消息驱动模式 , .Net 框架是 事件驱动模式 , 标题所指的 “控制外部程序”,外部程序是指与本程序无内在相关性的 另外一个程序 基于上面提到的,对于.NET的winform程序,在默认情况下(即未对接收消息的事件做自定义处理,说白了:就是没有 重写/覆写(override)窗体(Form)的DefWndProc 事件),.Net 的 winform 程序,是不响应所接收到的自定义消息的。 我们这里要讨论的 内容 财务内部控制制度的内容财务内部控制制度的内容人员招聘与配置的内容项目成本控制的内容消防安全演练内容 ,就分为两种情况: 1. C#/.NET的程序,控制外部的 win32程序(win16不做考虑) 2. C#/.NET的程序,控制外部的 .NET程序 从标题,大家也看到, C# 对外部程序的控制, 我们也分为两种情况来讨论: 1. .NET 平台自带的 SendKeys 和 Process 结合的方式 2. 完全利用 Windows API 的消息机制 的方式 一、.NET平台自带的 Process 和 SendKeys 结合的方式 本例子,用 C# 的一个Winform程序,创建一个指定路径的文本文件,写入某些内容后,并保存。 为了看清效果,将 Form 的 TopMost 设为 true private void button1_Click( object sender, EventArgs e ) { //启动notepad.exe 记事本程序,并在d:\下创建 或 打开 text_test.txt文件 System.Diagnostics.Process txt = System.Diagnostics.Process.Start ( @"notepad.exe", @"d:\text_test.txt" ); txt.StartInfo.WindowStyle = ProcessWindowStyle.Normal; //等待一秒,以便目标程序notepad.exe输入状态就绪 txt.WaitForInputIdle ( 1000 ); //如果目标程序 notepad.exe 没有停止响应,则继续 if ( txt.Responding ) { //开始写入内容 SendKeys.SendWait ( "-----下面的内容是外部程序自动写入-----\r\n" ); SendKeys.SendWait ( this.textBox1.Text ); //将文本框内的内容写入 SendKeys.SendWait ( "{Enter}{Enter}" ); //写入2个回车 SendKeys.SendWait ( "文档创建时间:" ); " ); //发送F5按键 SendKeys.SendWait ( "{F5} SendKeys.SendWait ("{Enter}"); //发送回车键 SendKeys.SendWait ( "^s" ); //发送 Ctrl + s 键 SendKeys.SendWait ( "%{F4}" ); // 发送 Alt + F4 键 MessageBox.Show ("文件已经保存成功~"); } } 注: SendKeys 发送的按键的接收窗体,必须是当前的活动窗体 二、C# 利用 Windows API 控制 外部的 win32 程序 我们这里,用控制 “计算器”程序,算一个 3 + 2 = 5 的算式来做示例。 API 中我们要用到的函数有 FindWindow, FindWindowEx, SendMessage, SetForegroundWindow 对于API的引用 方法 快递客服问题件处理详细方法山木方法pdf计算方法pdf华与华方法下载八字理论方法下载 ,大家去看 API 手册,我这里提供一个VB自带的API查询程序 要使用API,需要引入命名空间 using System.Runtime.InteropServices; 下面的API引用部分的代码,放入 class 内部 [DllImport ( "user32.dll", EntryPoint = "FindWindow", SetLastError = true )] private static extern IntPtr FindWindow( string lpClassName, string lpWindowName ); [DllImport ( "user32.dll", EntryPoint = "FindWindowEx", SetLastError = true )] private static extern IntPtr FindWindowEx( IntPtr hwndParent, uint hwndChildAfter, string lpszClass, string lpszWindow ); [DllImport ( "user32.dll", EntryPoint = "SendMessage", SetLastError = true, CharSet = CharSet.Auto )] private static extern int SendMessage( IntPtr hwnd, uint wMsg, int wParam, int lParam ); [DllImport ( "user32.dll", EntryPoint = "SetForegroundWindow", SetLastError = true )] extern void SetForegroundWindow( IntPtr hwnd ); private static private void button1_Click( object sender, EventArgs e ) { const uint BM_CLICK = 0xF5; //鼠标点击的消息,对于各种消息的数值,大家还是得去API手册 IntPtr hwndCalc = FindWindow ( null, "计算器" ); //查找计算器的句柄 if ( hwndCalc != IntPtr.Zero ) { IntPtr hwndThree = FindWindowEx ( hwndCalc, 0, null, "3" ); //获取按钮3 的句柄 IntPtr hwndPlus = FindWindowEx ( hwndCalc, 0, null, "+" ); //获取按钮 + 的句柄 IntPtr hwndTwo = FindWindowEx ( hwndCalc, 0, null, "2" ); //获取按钮2 的句柄 IntPtr hwndEqual = FindWindowEx ( hwndCalc, 0, null, "=" ); //获取按钮= 的句柄 SetForegroundWindow ( hwndCalc ); //将计算器设为当前活动窗口 System.Threading.Thread.Sleep ( 2000 ); //暂停2秒让你看到效果 SendMessage ( hwndThree, BM_CLICK, 0, 0 ); System.Threading.Thread.Sleep ( 2000 ); //暂停2秒让你看到效果 SendMessage ( hwndPlus, BM_CLICK, 0, 0 ); System.Threading.Thread.Sleep ( 2000 ); //暂停2秒让你看到效果 SendMessage ( hwndTwo, BM_CLICK, 0, 0 ); System.Threading.Thread.Sleep ( 2000 ); //暂停2秒让你看到效果 SendMessage ( hwndEqual, BM_CLICK, 0, 0 ); System.Threading.Thread.Sleep ( 2000 ); MessageBox.Show ("你看到结果了吗,"); } else { MessageBox.Show ("没有启动 [计算器]"); } }
本文档为【查找窗口句柄】,请使用软件OFFICE或WPS软件打开。作品中的文字与图均可以修改和编辑, 图片更改请在作品中右键图片并更换,文字修改请直接点击文字进行修改,也可以新增和删除文档中的内容。
该文档来自用户分享,如有侵权行为请发邮件ishare@vip.sina.com联系网站客服,我们会及时删除。
[版权声明] 本站所有资料为用户分享产生,若发现您的权利被侵害,请联系客服邮件isharekefu@iask.cn,我们尽快处理。
本作品所展示的图片、画像、字体、音乐的版权可能需版权方额外授权,请谨慎使用。
网站提供的党政主题相关内容(国旗、国徽、党徽..)目的在于配合国家政策宣传,仅限个人学习分享使用,禁止用于任何广告和商用目的。
下载需要: 免费 已有0 人下载
最新资料
资料动态
专题动态
is_983143
暂无简介~
格式:doc
大小:39KB
软件:Word
页数:0
分类:生活休闲
上传时间:2017-10-26
浏览量:16