我使用此代码获取窗口名称:
#include <Windows.h>
#include <stdio.h>
int main() {
TCHAR title[500];
int i=0;
while(i<10) {
GetWindowText(GetForegroundWindow(), title, 500);
printf("%s\n",title);
i++;
system("pause");
}
}
但是,它只获得前景窗口。
我需要获取所有窗口名称
或者,实际上,我需要获取一个属于“notepad.exe”进程的特定窗口名称。
感谢您的帮助:)
答案 0 :(得分:9)
我不认为使用原始的winapi有任何更简单的方法,但这里有:
这是我提出的代码:
#include <iostream>
#include <string>
#include <vector>
#include <windows.h>
#include <tlhelp32.h>
bool isNotepad(const PROCESSENTRY32W &entry) {
return std::wstring(entry.szExeFile) == L"notepad.exe";
}
BOOL CALLBACK enumWindowsProc(HWND hwnd, LPARAM lParam) {
const auto &pids = *reinterpret_cast<std::vector<DWORD>*>(lParam);
DWORD winId;
GetWindowThreadProcessId(hwnd, &winId);
for (DWORD pid : pids) {
if (winId == pid) {
std::wstring title(GetWindowTextLength(hwnd) + 1, L'\0');
GetWindowTextW(hwnd, &title[0], title.size()); //note: C++11 only
std::cout << "Found window:\n";
std::cout << "Process ID: " << pid << '\n';
std::wcout << "Title: " << title << "\n\n";
}
}
return TRUE;
}
int main() {
std::vector<DWORD> pids;
HANDLE snap = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
PROCESSENTRY32W entry;
entry.dwSize = sizeof entry;
if (!Process32FirstW(snap, &entry)) {
return 0;
}
do {
if (isNotepad(entry)) {
pids.emplace_back(entry.th32ProcessID);
}
} while (Process32NextW(snap, &entry));
EnumWindows(enumWindowsProc, reinterpret_cast<LPARAM>(&pids));
}
按顺序完成:
首先请注意功能和字符串的广泛版本。 TCHAR
不好用,如果其中一个标题中碰巧有UTF-16,那将是一件很遗憾的事。
isNotepad
只检查PROCESSENTRY32W
结构的可执行文件名成员,看它是否等于“notepad.exe”。这假设记事本使用此进程名称,并且没有任何非记事本使用进程名称。为了消除误报,你必须做更多的检查,但你永远不能确定。
在enumWindowsProc
中,请注意lParam
实际上是指向PID向量的指针(以避免必须使用全局)。这构成了函数开头的演员表。接下来,我们得到我们找到的窗口的PID。然后,我们遍历传入的PID列表并检查它是否与任何匹配。如果是这样,我选择获取标题并输出PID和窗口标题。请注意,使用标准字符串作为缓冲区只能保证在C ++ 11中工作,并且不能覆盖额外的空字符(不是长度的一部分)。最后,我们返回TRUE
,以便它一直枚举,直到它通过每个顶级窗口。
在main
上,你看到的第一件事是我们最初的空列表PID。我们对流程进行快照并完成它们。我们使用辅助函数isNotepad
来检查进程是否为“notepad.exe”,如果是,则存储其PID。最后,我们调用EnumWindows
来枚举窗口,并传递PID列表,伪装成所需的LPARAM
。
如果你没有做过这种事情,这有点棘手,但我希望这是有道理的。如果您想要子窗口,那么正确的做法是添加EnumChildWindowsProc
并在我输出有关找到的窗口的信息的地方调用EnumChildWindows
。如果我是正确的,你不需要递归调用EnumChildWindows
来获得孙子等等,因为它们将包含在第一次调用中。
答案 1 :(得分:2)
致电EnumWindows
。您提供了一个为每个顶级窗口调用一次的回调函数。然后,您可以使用特定标准检查每个窗口的属性。您可以调用GetWindowText
,然后根据您要查找的值进行检查。
答案 2 :(得分:0)
你问,
“我需要获取一个特定的窗口名称,该名称属于”notepad.exe“进程”
嗯,C ++是该任务的错误语言。这是一个通过脚本编写更自然,更简单的任务。例如,这是一个Windows批处理文件,用于报告所有记事本窗口的标题:
@echo off
for /f "usebackq delims=, tokens=1,9" %%t in (`tasklist /v /fo csv`) do (
if %%t=="notepad.exe" echo %%u
)
使用示例:
[d:\dev\misc\so\notepad_window_name] > titles "Untitled - Notepad" [d:\dev\misc\so\notepad_window_name] > _
此外,除了语言选择之外,请考虑您的C ++代码通过使用TCHAR
类型进行广告,它可以编译为Unicode和ANSI - 但它不能编译为Unicode到期使用printf
。这意味着过于愚蠢的TCHAR
误导你引入一个bug。只是不要使用T
这样的东西,比如TCHAR
:它只是一种混淆代码并引入错误的方法。
这里的代码举例说明了如何创建仅限Unicode的程序。
与批处理文件相比,它只检索一个记事本窗口的标题:
#include <iostream> // std::wcout, std::endl
#include <stdlib.h> // EXIT_FAILURE, EXIT_SUCCESS
#include <string> // std::wstring
using namespace std;
#define UNICODE
#include <windows.h>
int main()
{
HWND const window = FindWindow( L"Notepad", nullptr );
if( window == 0 )
{
wcerr << "!Didn't find any Notepad window." << endl;
}
else
{
int const nAttempts = 3;
for( int i = 1; i <= nAttempts; ++i )
{
int const bufferSize = 1 + GetWindowTextLength( window );
wstring title( bufferSize, L'\0' );
int const nChars = GetWindowText( window, &title[0], bufferSize );
if( nChars == 0 || nChars < GetWindowTextLength( window ) )
{
Sleep( 20 ); continue;
}
title.resize( nChars );
wcout << "'" << title << "'" << endl;
return EXIT_SUCCESS;
}
wcerr << "!Found a Notepad window but unable to obtain the title." << endl;
}
return EXIT_FAILURE;
}
因此,C ++是错误的语言选择,TCHAR
是完全错误的数据类型选择。
如果出于某种原因你做需要代码为C ++,并且做需要所有的Notepad窗口标题,那么批处理文件将不会这样做,并且以上C ++代码不会这样做。在这种情况下,请使用Windows EnumWindows
API函数as David Hefferman suggest。为了避免混淆,微妙的错误和误导读取代码的其他人,请使用基于wchar_t
的字符串,而不是TCHAR
,如上面的代码所示。