资源简介

VC中实现点击鼠标后拖动画出矩形框选,类似橡皮筋类!

资源截图

代码片段和文件信息

// RectTrackerTest.cpp : Defines the class behaviors for the application.
//

#include “stdafx.h“
#include “RectTrackerTest.h“
#include “RectTrackerTestDlg.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CRectTrackerTestApp

BEGIN_MESSAGE_MAP(CRectTrackerTestApp CWinApp)
//{{AFX_MSG_MAP(CRectTrackerTestApp)
// 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()

/////////////////////////////////////////////////////////////////////////////
// CRectTrackerTestApp construction

CRectTrackerTestApp::CRectTrackerTestApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CRectTrackerTestApp object

CRectTrackerTestApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CRectTrackerTestApp initialization

BOOL CRectTrackerTestApp::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

CRectTrackerTestDlg 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;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件     106562  2012-06-13 09:59  RectTrackerTest\Debug\RectTrackerTest.exe

     文件     193992  2012-06-13 09:59  RectTrackerTest\Debug\RectTrackerTest.ilk

     文件      13483  2012-06-13 09:59  RectTrackerTest\Debug\RectTrackerTest.obj

     文件    5558976  2012-06-13 09:59  RectTrackerTest\Debug\RectTrackerTest.pch

     文件     394240  2012-06-13 09:59  RectTrackerTest\Debug\RectTrackerTest.pdb

     文件       2612  2012-06-12 17:43  RectTrackerTest\Debug\RectTrackerTest.res

     文件      27163  2012-06-13 09:59  RectTrackerTest\Debug\RectTrackerTestDlg.obj

     文件     105757  2012-06-13 09:59  RectTrackerTest\Debug\StdAfx.obj

     文件     214016  2012-06-13 09:59  RectTrackerTest\Debug\vc60.idb

     文件     372736  2012-06-13 09:59  RectTrackerTest\Debug\vc60.pdb

     文件       3741  2012-06-12 17:40  RectTrackerTest\ReadMe.txt

     文件      35628  2012-06-12 17:43  RectTrackerTest\RectTrackerTest.aps

     文件       1213  2012-06-13 09:44  RectTrackerTest\RectTrackerTest.clw

     文件       2189  2012-06-12 17:40  RectTrackerTest\RectTrackerTest.cpp

     文件       4321  2012-06-12 17:40  RectTrackerTest\RectTrackerTest.dsp

     文件        553  2012-06-12 17:40  RectTrackerTest\RectTrackerTest.dsw

     文件       1423  2012-06-12 17:40  RectTrackerTest\RectTrackerTest.h

     文件      58368  2012-06-13 10:00  RectTrackerTest\RectTrackerTest.ncb

     文件      54784  2012-06-13 10:00  RectTrackerTest\RectTrackerTest.opt

     文件       1639  2012-06-13 09:59  RectTrackerTest\RectTrackerTest.plg

     文件       5326  2012-06-12 17:43  RectTrackerTest\RectTrackerTest.rc

     文件       5378  2012-06-13 09:59  RectTrackerTest\RectTrackerTestDlg.cpp

     文件       1610  2012-06-13 09:59  RectTrackerTest\RectTrackerTestDlg.h

     文件       1078  2012-06-12 17:40  RectTrackerTest\res\RectTrackerTest.ico

     文件        407  2012-06-12 17:40  RectTrackerTest\res\RectTrackerTest.rc2

     文件        552  2012-06-12 17:40  RectTrackerTest\Resource.h

     文件        217  2012-06-12 17:40  RectTrackerTest\StdAfx.cpp

     文件       1054  2012-06-13 09:59  RectTrackerTest\StdAfx.h

     目录          0  2012-06-13 09:59  RectTrackerTest\Debug

     目录          0  2012-06-12 17:40  RectTrackerTest\res

............此处省略4个文件信息

评论

共有 条评论