知道一个窗体的句柄,如何获取这个窗体
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了知道一个窗体的句柄,如何获取这个窗体相关的知识,希望对你有一定的参考价值。
当我知道这个窗体的句柄时,如何获取得到该窗体Form的实例呢?
现有两个.net写的可执行程序A.exe和B.exe,其中在B中有这样的语句. 根据gihelo的回答:
IntPtr hWnd = ***;
frm = (Control)Form.FromHandle(hWnd);
如果hWnd的值为B中的窗口句柄,则frm能返回正确的实例.(即当前例程里的窗体)
但是如果hWnd的值为A(或B以外的例程)中的窗口句柄,则frm返回null.
请问:如果hWnd的值为A(或B以外的例程)中的窗口句柄,怎样才能得到正确的frm实例
h为句柄,我这里强转成control了,你可以自己看情况改动
我原来写过一个例子,调用cmd.exe窗口,并嵌入到自己的窗体内,你可以参考一下
using System;
using System.Collections;
using System.ComponentModel;
using System.Diagnostics;
using System.Drawing;
using System.Data;
using System.Windows.Forms;
using System.Runtime.InteropServices;
namespace WindowsApplication1
public partial class Form2 : Form
[DllImport("user32", EntryPoint = "SetParent", ExactSpelling = true, CharSet = CharSet.Ansi, SetLastError = true)]
public static extern int SetParent(IntPtr hWndChild, IntPtr hWndNewParent);
[DllImport("user32", EntryPoint = "FindWindowA", ExactSpelling = true, CharSet = CharSet.Ansi, SetLastError = true)]
public static extern IntPtr FindWindow(string lpClassName, string lpWindowName);
[DllImport("user32.dll", EntryPoint = "SendMessageA", ExactSpelling = true, CharSet = CharSet.Ansi, SetLastError = true)]
private static extern int SendMessage(int hwnd, int wMsg, int wParam, int lParam);
[DllImport("shell32.dll", EntryPoint = "ShellExecuteA", ExactSpelling = true, CharSet = CharSet.Ansi, SetLastError = true)]
private static extern int ShellExecute(int hwnd, string lpOperation, string lpFile, string lpParameters, string lpDirectory, int nShowCmd);
private const int WM_SYSCOMMAND = 0x112;
private const int SC_MAXIMIZE = 0xF030;
private const int SC_MINIMIZE = 0xF020;
private const int SC_RESTORE = 0xF120;
public const int SW_HIDE = 0;
public const int SW_SHOW = 5;
[DllImport("user32.dll ", ExactSpelling = true, CharSet = CharSet.Ansi, SetLastError = true)]
private static extern int ShowWindow(int hwnd, int nCmdShow);
public Form2()
InitializeComponent();
private void Form2_Load(object sender, EventArgs e)
//Process p = null;
// p = System.Diagnostics.Process.Start("c:\\windows\\system32\\cmd.exe");
ShellExecute(this.panel1.Handle.ToInt32(), "open", @"c:\\windows\\system32\\cmd.exe", null, ".", SW_HIDE); // 让CtrlDemo.exe运行在PANEL里
IntPtr h = FindWindow(null, "c:\\windows\\system32\\cmd.exe");
//关键在这里
var frm = (Control)Form.FromHandle(h);
//使你的Form可以嵌入别的容器
//frm.Visible = true;
SetParent(h, this.panel1.Handle); //嵌套到panel1内
SendMessage(h.ToInt32(), WM_SYSCOMMAND, SC_MAXIMIZE, 0);
ShowWindow(h.ToInt32(), SW_SHOW);
本回答被提问者采纳 参考技术B form a =new form ();
C# 获取窗体的句柄和获取窗体中的空间
获取窗体的句柄
FindWindow,用来根据类名和窗口名来得到窗口句柄。但是这个函数不能查找子窗口,也不区分大小写。如果要从一个窗口的子窗口中查找需要使用的FindWindowEX。
1.在C#中使用方法如下:
[DllImport("User32.dll",EntryPoint="FindWindow")]
private static extern IntPtr FindWindow(string lpClassName,string lpWindowName);
IntPtr hWnd = FindWindow(null,"计算器");
//其中第一个参数为该窗体的类名,其实一般来说都设置为null
//第二个参数为窗体的标题名(一般第二个参数经常使用)
获取窗体的子窗体句柄
FindWindowEx该函数获得一个窗口的句柄,该窗口的类名和窗口名与给定的字符串相匹配。这个函数查找子窗口,从排在给定的子窗口后边的子窗口开始。在查找时不区分大小写。
HWND FindWindowEx(HWND hwndParent,HWND hwndChildAfter,LPCTSTR lpszClass,LPCTSTR lpszWindow);
参数
hwndParent:要查找子窗口的父窗口句柄。如果hwnjParent为NULL,则函数桌面窗口为父窗口,查找桌面窗口的所有子窗口。Windows NT5.0 and
later:如果hwndParent是HWND_MESSAGE,函数仅查找所有消息窗口。
hwndChildAfter:子窗口句柄。查找从在Z序中的下一个子窗口开始。子窗口必须为hwndPareRt窗口的直接子窗口而非后代子窗口。如果HwndChildAfter为NULL,查找从hwndParent的第一个子窗口开始。如果hwndParent和hwndChildAfter同时为NULL,查找从hwndParent的第一个子窗口开始。如果hwndParent和hwndChildAfter同时为NULL,则函数查找所有的顶层窗口及消息窗口。(使用VS的自带的spy++ 则如下图)
lpszClass,指向一个指定了类名的空结束字符串,或一个标识类名字符串的成员的指针。如果该参数为一个成员,则它必须为前次调用theGloalAddAtom函数产生的全局成员。该成员为16位,必须位于lpClassName的低16位,高位必须为0。
lpszWindow:指向一个指定了窗口(窗口标题)的空结束字符串。如果该参数为NULL,则为所有窗口全匹配。返回值:如果该参数为NULL,则为所有窗口全匹配。返回值:如果函数成功,返回值为具有指定类名和窗口名的窗口句柄。如果函数失败,返回值为NULL。
若想获得更多错误信息,请调用GetLastError函数。
//在程序中的使用如下
[DllImport("user32.dll",EntryPoint="FindWindowEx")]
private static extern IntPtr FindWindowEx(IntPtr hwndParent,IntPtr hwndChildAfter,string lpszClass,string lpszWindow)
const int BM_CLICK = 0xF5;
IntPtr mainHwnd = FindWindow(null,"用户登录");
if(mainHwnd != IntPtr.Zero)
IntPtr childHwnd = FindWindowEx(mainHwnd,IntPtr.Zero,null,"登录");
if(childHwnd != IntPtr.Zero)
SendMessage(childHwnd,BM_Click,0,0);
else
MessageBox.Show("没有找到窗口");
特殊的方法
在有些时候获取的控件没有标题,就不能通过FindWindEx()获取对应的空间。为了解决上述问题则需要通过其他的方法进行解决。
WindowFromPoint
函数功能:该函数获得包含指定点的窗口的句柄,Point参数指屏幕坐标
参数
Point:指定一个被检测的点的POINT结构。
返回值
返回值为包含该点的窗口句柄。如果不存在窗口包含这个点,则返回Null。如果窗口无效或者隐藏,则返回Null。通过测试,发现获取部分控件句柄,返回的都是父窗口的句柄。包含Static Text, GroupBox等等。
[DllImport("user32.dll", EntryPoint = "WIndowFromPoint")]//指定坐标处窗体句柄
public static extern in WindowFromPoint(int xPoint, int yPoint);
ChildWindowFromPoint(HWND hWndParent, POINT Point);
功能:返回包含这个点的窗口句柄,即使窗口隐藏或者处于无效状态。(需要指定某个容器窗体,返回该容器窗体中包含点的窗口句柄)
返回值:如果点不在父窗口内,则返回Null,如果点在父窗口,但不在任何子窗口上,则返回父窗口的句柄。
另外,特别要注意的是:参数Point不是屏幕坐标,而是相对容器窗口的坐标。
以上是关于知道一个窗体的句柄,如何获取这个窗体的主要内容,如果未能解决你的问题,请参考以下文章