资源简介
简单实用的遍历窗口工具。主要通过EnumWindows、EnumChildWindows函数和while循环,实现遍历所有窗口,希望对您的程序开发有所帮助
代码片段和文件信息
// EnumWindow.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “EnumWindow.h“
#include “EnumWindowDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CEnumWindowApp
BEGIN_MESSAGE_MAP(CEnumWindowApp CWinApp)
//{{AFX_MSG_MAP(CEnumWindowApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CEnumWindowApp construction
CEnumWindowApp::CEnumWindowApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CEnumWindowApp object
CEnumWindowApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CEnumWindowApp initialization
BOOL CEnumWindowApp::InitInstance()
{
AfxEnableControlContainer();
// Standard initialization
// If you are not using these features and wish to reduce the size
// of your final executable you should remove from the following
// the specific initialization routines you do not need.
#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif
CEnumWindowDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
// dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
// dismissed with Cancel
}
// Since the dialog has been closed return FALSE so that we exit the
// application rather than start the application‘s message pump.
return FALSE;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 25576 2014-04-28 09:07 EnumWindow\EnumWindow.aps
文件 1244 2014-04-28 09:08 EnumWindow\EnumWindow.clw
文件 2119 2005-06-08 13:53 EnumWindow\EnumWindow.cpp
文件 4325 2005-08-30 13:13 EnumWindow\EnumWindow.dsp
文件 545 2005-06-08 13:53 EnumWindow\EnumWindow.dsw
文件 1368 2005-06-08 13:53 EnumWindow\EnumWindow.h
文件 41984 2014-04-28 09:08 EnumWindow\EnumWindow.ncb
文件 174592 2014-04-28 09:08 EnumWindow\EnumWindow.opt
文件 1673 2014-04-28 09:08 EnumWindow\EnumWindow.plg
文件 5684 2005-08-30 13:12 EnumWindow\EnumWindow.rc
文件 5663 2005-08-30 13:13 EnumWindow\EnumWindowDlg.cpp
文件 1380 2005-08-30 13:12 EnumWindow\EnumWindowDlg.h
文件 3651 2005-06-08 13:53 EnumWindow\ReadMe.txt
文件 208896 2014-04-28 09:08 EnumWindow\Release\EnumWindow.exe
文件 610 2005-08-30 13:05 EnumWindow\res\dragon
文件 4846 2005-08-30 13:10 EnumWindow\res\EnumWindow.ico
文件 402 2005-06-08 13:53 EnumWindow\res\EnumWindow.rc2
文件 823 2005-08-30 13:06 EnumWindow\resource.h
文件 212 2005-06-08 13:53 EnumWindow\StdAfx.cpp
文件 1054 2005-06-08 13:53 EnumWindow\StdAfx.h
目录 0 2014-04-28 09:08 EnumWindow\Release
目录 0 2005-08-30 13:10 EnumWindow\res
目录 0 2014-04-28 09:08 EnumWindow
----------- --------- ---------- ----- ----
486647 23
- 上一篇:15系列pcb封装库
- 下一篇:基于单片机和555定时器的AD转换器设计
评论
共有 条评论