码迷,mamicode.com
首页 > Windows程序 > 详细

用 c 调用 win-api 实现自动点击c# winform 程序 的按钮

时间:2017-08-22 16:10:18      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:and   for   nbsp   oid   img   star   spy++   一个   c程序   

c# 程序界面

技术分享

 

要点击的按钮是 “Start”

 

c程序代码: 

 

#include <windows.h>
void main()
{
    HWND windowHandle = FindWindowA(NULL, "WatchDog v1.04 (2010-06-22)");   //Can’t find a proccess

    if( windowHandle ) 
    {
        HWND hwndChild = FindWindowEx(windowHandle, NULL, NULL, NULL);

        while ( hwndChild )
        {
            HWND hwndChildChild = FindWindowEx(hwndChild, NULL, NULL, L"Start");
            if(hwndChildChild)
            {
                SendMessage(hwndChildChild, WM_LBUTTONDOWN, MK_LBUTTON, MAKELPARAM(0, 0));
                Sleep(100);
                SendMessage(hwndChildChild, WM_LBUTTONUP, MK_LBUTTON, MAKELPARAM(0, 0));
                break;
            }
            hwndChild = FindWindowEx(windowHandle, hwndChild, NULL, NULL);
        }
    }



    return;
}

 

功能简介: 

首先用 spy++ 确定 c# 程序的 caption 是 WatchDog v1.04 (2010-06-22) 

然后用spy++ 找出 button  所在的 hierachy position ,  如下图黑线包围的是一个panel , button 在panel 里面, 也就是说 ,  panel 是 mainform 的 child window , button 是 panel 的 child window ,所以代码中向下找2层

技术分享

 

用 c 调用 win-api 实现自动点击c# winform 程序 的按钮

标签:and   for   nbsp   oid   img   star   spy++   一个   c程序   

原文地址:http://www.cnblogs.com/lthxk-yl/p/7411620.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!