Windows下用C++关闭某个窗口的简单方法
头文件中定义:
BOOL CALLBACK EnumWindowsProc(HWND hwnd, LPARAM lParam);
代码中添加:
#include <windows.h>
{
char wtitle[512];
GetWindowText(hwnd, wtitle, sizeof(wtitle));
if (strstr(wtitle , "Visual Studio"))
{
::SendMessage(hwnd, WM_CLOSE, 0, 0);
}
return (true);
}
调用代码:
EnumWindows(EnumWindowsProc, 0);
:233网校- 计算机二级考试