永发信息网

如何使用C#获取VC写的程序窗口中某个按钮的句柄

答案:1  悬赏:40  手机版
解决时间 2021-12-24 00:19
  • 提问者网友:欲劫无渡
  • 2021-12-23 19:49
如何使用C#获取VC写的程序窗口中某个按钮的句柄
最佳答案
  • 五星知识达人网友:人间朝暮
  • 2021-12-23 21:00
[DllImport("user32.dll", EntryPoint = "FindWindow", CharSet = CharSet.Auto)]
static extern IntPtr FindWindow(string lpClassName,string lpWindowName);
[DllImport("user32.dll", EntryPoint = "FindWindowEx", CharSet = CharSet.Auto)]
extern static IntPtr FindWindowEx(IntPtr hwndParent, IntPtr hwndChildAfter, string lpszClass, string lpszWindow);
[STAThread]
static void Main(string[] args)
{
string path = "..\\..\\..\\AUT3\\bin\\Debug\\AUT3.exe";
Process p = Process.Start(path);
if (p==null)
Console.WriteLine("Warning:process may already exist");

Console.WriteLine("Finding main window handle");
IntPtr mwh = FindMainWindowHandle("Form1", 100, 25);
Console.WriteLine("Handle to main window is " + mwh);

//有名字控件句柄
Console.WriteLine("Findding handle to textbox1");
IntPtr tb = FindWindowEx(mwh, IntPtr.Zero, null, "");
if (tb == IntPtr.Zero)
throw new Exception("Unable to find textbox1");
else
Console.WriteLine("Handle to textbox1 is " + tb);

Console.WriteLine("Findding handle to button1");
IntPtr butt = FindWindowEx(mwh, IntPtr.Zero, null, "button1");
if (butt == IntPtr.Zero)
throw new Exception("Unable to find button1");
else
Console.WriteLine("Handle to button1 is " + butt);

//没有名字或者重名控件
Console.WriteLine("Findding handle to listbox1");
IntPtr lb = FindWindowByIndex(mwh,3);
if (lb == IntPtr.Zero)
throw new Exception("Unable to find listbox1");
else
Console.WriteLine("Handle to listbox1 is " + lb);

}

方法:
//通过索引查找相应控件句柄
static IntPtr FindWindowByIndex(IntPtr hwndParent,int index)
{
if (index == 0)
{
return hwndParent;
}
else
{
int ct = 0;
IntPtr result = IntPtr.Zero;
do
{
result = FindWindowEx(hwndParent,result,null,null);
if (result != IntPtr.Zero)
{
++ct;
}
} while (ct return result;
}
}

//获得待测程序主窗体句柄
private static IntPtr FindMainWindowHandle(string caption,int delay,int maxTries)
{
IntPtr mwh = IntPtr.Zero;
bool formFound = false;
int attempts = 0;
while (!formFound && attempts < maxTries)
{
if (mwh == IntPtr.Zero)
{
Console.WriteLine("Form not yet found");
Thread.Sleep(delay);
++attempts;
mwh = FindWindow(null, caption);
}
else
{
Console.WriteLine("Form has been found");
formFound = true;
}
}

if (mwh == IntPtr.Zero)
throw new Exception("Could not find main window");
else
return mwh;
}
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯