10

我有一个用 C++ 制作一个简单的培训控制台的计划,但第一步我遇到了 FindWindow() 的问题

#include <stdio.h>
#include <cstdlib>
#include <windows.h>
#include <winuser.h>
#include <conio.h>

LPCTSTR WindowName = "Mozilla Firefox";
HWND Find = FindWindow(NULL,WindowName);
int main(){
    if(Find)
    {
        printf("FOUND\n");
        getch();
    }
    else{
        printf("NOT FOUND");
        getch();
    }
}

上面的代码我用来尝试命令 FindWindow() 但是当我执行输出时总是显示

未找到

我已将属性项目上的字符集替换为

使用 Unicode 字符集

使用多字节字符集

LPCTSTR

LPCSTR

或者

LPCWSTR

但结果总是一样,我希望任何人都可以帮助我。

4

4 回答 4

16

FindWindow仅当窗口具有确切指定的标题时才找到窗口,而不仅仅是子字符串。

或者,您可以:


搜索窗口类名:

HWND hWnd = FindWindow("MozillaWindowClass", 0);

枚举所有窗口并对标题执行自定义模式搜索:

BOOL CALLBACK EnumWindowsProc(HWND hwnd, LPARAM lParam)
{
    char buffer[128];
    int written = GetWindowTextA(hwnd, buffer, 128);
    if (written && strstr(buffer,"Mozilla Firefox") != NULL) {
        *(HWND*)lParam = hwnd;
        return FALSE;
    }
    return TRUE;
}

HWND GetFirefoxHwnd()
{
    HWND hWnd = NULL;
    EnumWindows(EnumWindowsProc, &hWnd);
    return hWnd;
}
于 2013-05-13T21:15:42.883 回答
9
 HWND Find = ::FindWindowEx(0, 0, "MozillaUIWindowClass", 0);
于 2013-05-13T20:52:43.990 回答
5

根据MSDN

lpWindowName [输入,可选]

Type: LPCTSTR

The window name (the window's title). If this parameter is NULL, all window names match.

因此,您的 WindowName 不能是“Mozilla Firefox”,因为 Firefox 窗口的标题永远不会是“Mozilla Firefox”,但它可能是“Mozilla Firefox Start Page - Mozilla Firefox”或其他取决于网页名称的东西。这是示例图片 Firefox的真正倾斜

因此,您的代码应该是这样的,(下面的代码仅适用 -当您具有确切窗口的标题名称时才有效:“Mozilla Firefox Start Page - Mozilla Firefox”,如上图所示。我已经在 Windows 8.1 上进行了测试并且它有效)

void CaptureWindow()
{


RECT rc;
HWND hwnd = ::FindWindow(0, _T("Mozilla Firefox Start Page - Mozilla Firefox"));//::FindWindow(0,_T("ScreenCapture (Running) - Microsoft Visual Studio"));//::FindWindow(0, _T("Calculator"));//= FindWindow("Notepad", NULL);    //You get the ideal?
if (hwnd == NULL)
{
    return;
}
GetClientRect(hwnd, &rc);

//create
HDC hdcScreen = GetDC(NULL);
HDC hdc = CreateCompatibleDC(hdcScreen);
HBITMAP hbmp = CreateCompatibleBitmap(hdcScreen,
    rc.right - rc.left, rc.bottom - rc.top);
SelectObject(hdc, hbmp);

//Print to memory hdc
PrintWindow(hwnd, hdc, PW_CLIENTONLY);

//copy to clipboard
OpenClipboard(NULL);
EmptyClipboard();
SetClipboardData(CF_BITMAP, hbmp);
CloseClipboard();

//release
DeleteDC(hdc);
DeleteObject(hbmp);
ReleaseDC(NULL, hdcScreen);

//Play(TEXT("photoclick.wav"));//This is just a function to play a sound, you can write it yourself, but it doesn't matter in this example so I comment it out.
}
于 2016-12-15T14:10:47.100 回答
2

您需要使用应用程序的全名(如 Windows 任务管理器 -> 应用程序选项卡中所示)

例子:

Google - Mozilla Firefox

(在 Firefox 中打开 Google 标签后)

于 2013-05-15T02:59:23.090 回答