窗口隐藏工具
Windows环境下,有时候必须一直开着某些窗口,但如果窗口一多,有的时候看着心烦。好在Windows api中存在隐藏窗口的方法,为了学习MFC编程,我编写了一个隐藏窗口的工具。
工具中用到的主要api如下:
EnumWindows:EnumWindows(EnumWindowsProc, 0),通过该函数来遍历所有的窗口,其中EnumWindowsProc是一个回调函数,如下:
代码
<!--
Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/
-->BOOL CALLBACK EnumWindowsProc(HWND hwnd,LPARAM lParam)
{
//AfxMessageBox(_T("hello")
LONG gwl_style = GetWindowLong(hwnd,GWL_STYLE);
if ((gwl_style & WS_CAPTION))
{
if(hwnd != thisHwnd)
{
TCHAR title[255];
::GetWindowText(hwnd, title, 255);
if (wcscmp(L"", title) != 0)
{
if (IsWindowVisible(hwnd))
{
visibleWindows.push_back(hwnd);
}
else
{
if (IsWindowEnabled(hwnd))
{
hideWindows.push_back(hwnd);
}
}
}
}
}
return TRUE;
}
Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/
-->BOOL CALLBACK EnumWindowsProc(HWND hwnd,LPARAM lParam)
{
//AfxMessageBox(_T("hello")
LONG gwl_style = GetWindowLong(hwnd,GWL_STYLE);
if ((gwl_style & WS_CAPTION))
{
if(hwnd != thisHwnd)
{
TCHAR title[255];
::GetWindowText(hwnd, title, 255);
if (wcscmp(L"", title) != 0)
{
if (IsWindowVisible(hwnd))
{
visibleWindows.push_back(hwnd);
}
else
{
if (IsWindowEnabled(hwnd))
{
hideWindows.push_back(hwnd);
}
}
}
}
}
return TRUE;
}
把所有的可见窗口和不可见窗口都列出来。
FindWindow:HWND hwnd = ::FindWindow(0, title),通过窗口的标题来寻找到窗口的句柄。
ShowWindow:把一个窗口隐藏或者显示出来,ShowWindow(hwnd, SW_HIDE),ShowWindow(hwnd, SW_SHOW)
基本用到的东西就这么多,工程代码,点击这里下载。
本文基于署名 2.5 中国大陆许可协议发布,欢迎转载,演绎或用于商业目的,但是必须保留本文的署名小橋流水(包含链接)。如您有任何疑问或者授权方面的协商,请给我发邮件。