码迷,mamicode.com
首页 > 编程语言 > 详细

c++得到窗口句柄

时间:2018-05-09 10:12:02      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:nbsp   bsp   set   using   space   down   ems   out   strcmp   

#include <Windows.h>
#include <stdio.h>
#include <tchar.h>
#include <string.h>
#include <iostream>

using namespace std;
int main()
{
    HWND hd = GetDesktopWindow();        //得到桌面窗口
    hd = GetWindow(hd, GW_CHILD);        //得到屏幕上第一个子窗口
    char s[200] = { 0 };
    while (hd != NULL)                    //循环得到所有的子窗口
    {
        memset(s, 0, 200);
        GetWindowText(hd, s, 200);
        if (strcmp(s,"计算器")==0)
        {
            cout << s << endl;
            break;
        }

        
        hd = GetNextWindow(hd, GW_HWNDNEXT);
    }

//    PostMessage(hd, WM_KEYDOWN, 0xd, 0x1C0001);
//    PostMessage(hd, WM_KEYUP, 0xd, 0xC01C0001);

    getchar();
    return 0;
}

 

c++得到窗口句柄

标签:nbsp   bsp   set   using   space   down   ems   out   strcmp   

原文地址:https://www.cnblogs.com/tiandsp/p/9012354.html

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