• 大小: 38KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-14
  • 语言: 其他
  • 标签: GDI直线  

资源简介

用GDI实现画直线时的橡皮筋效果

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “DrawLine.h“

#include “MainFrm.h“
#include “DrawLineDoc.h“
#include “DrawLineView.h“

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

/////////////////////////////////////////////////////////////////////////////
// CDrawLineApp

BEGIN_MESSAGE_MAP(CDrawLineApp CWinApp)
//{{AFX_MSG_MAP(CDrawLineApp)
ON_COMMAND(ID_APP_ABOUT OnAppAbout)
// NOTE - the ClassWizard will add and remove mapping macros here.
//    DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG_MAP
// Standard file based document commands
ON_COMMAND(ID_FILE_NEW CWinApp::OnFileNew)
ON_COMMAND(ID_FILE_OPEN CWinApp::OnFileOpen)
// Standard print setup command
ON_COMMAND(ID_FILE_PRINT_SETUP CWinApp::OnFilePrintSetup)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CDrawLineApp construction

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

/////////////////////////////////////////////////////////////////////////////
// The one and only CDrawLineApp object

CDrawLineApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CDrawLineApp initialization

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

// Change the registry key under which our settings are stored.
// TODO: You should modify this string to be something appropriate
// such as the name of your company or organization.
SetRegistryKey(_T(“Local AppWizard-Generated Applications“));

LoadStdProfileSettings();  // Load standard INI file options (including MRU)

// Register the application‘s document templates.  Document templates
//  serve as the connection between documents frame windows and views.

CSingleDocTemplate* pDocTemplate;
pDocTemplate = new CSingleDocTemplate(
IDR_MAINframe
RUNTIME_CLASS(CDrawLineDoc)
RUNTIME_CLASS(CMainframe)       // main SDI frame window
RUNTIME_CLASS(CDrawLineView));
AddDocTemplate(pDocTemplate);

// Parse command line for standard shell commands DDE file open
CCommandLineInfo cmdInfo;
ParseCommandLine(cmdInfo);

// Dispatch commands specified on the command line
if (!ProcessShellCommand(cmdInfo))
return FALSE;

// The one and only window has been initialized so show and update it.
m_pMainWnd->ShowWindow(SW_SHOW);
m_pMainWnd->Up

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

     文件      28656  2003-11-19 16:08  实例33  用GDI实现画直线时的橡皮筋效果\DrawLine.aps

     文件       2286  2003-11-20 15:19  实例33  用GDI实现画直线时的橡皮筋效果\DrawLine.clw

     文件       4245  2003-11-19 16:08  实例33  用GDI实现画直线时的橡皮筋效果\DrawLine.cpp

     文件       4597  2003-11-19 16:08  实例33  用GDI实现画直线时的橡皮筋效果\DrawLine.dsp

     文件        541  2003-11-19 16:08  实例33  用GDI实现画直线时的橡皮筋效果\DrawLine.dsw

     文件       1378  2003-11-19 16:08  实例33  用GDI实现画直线时的橡皮筋效果\DrawLine.h

     文件      74752  2003-12-02 14:15  实例33  用GDI实现画直线时的橡皮筋效果\DrawLine.ncb

     文件      53760  2003-12-02 14:15  实例33  用GDI实现画直线时的橡皮筋效果\DrawLine.opt

     文件       1159  2003-12-02 14:03  实例33  用GDI实现画直线时的橡皮筋效果\DrawLine.plg

     文件      10581  2003-11-19 16:08  实例33  用GDI实现画直线时的橡皮筋效果\DrawLine.rc

     文件       1782  2003-11-19 16:08  实例33  用GDI实现画直线时的橡皮筋效果\DrawLineDoc.cpp

     文件       1497  2003-11-19 16:08  实例33  用GDI实现画直线时的橡皮筋效果\DrawLineDoc.h

     文件       3508  2003-12-02 14:15  实例33  用GDI实现画直线时的橡皮筋效果\DrawLineView.cpp

     文件       2013  2003-12-02 13:51  实例33  用GDI实现画直线时的橡皮筋效果\DrawLineView.h

     文件       2509  2003-11-19 16:08  实例33  用GDI实现画直线时的橡皮筋效果\MainFrm.cpp

     文件       1581  2003-11-19 16:08  实例33  用GDI实现画直线时的橡皮筋效果\MainFrm.h

     文件       4359  2003-11-19 16:08  实例33  用GDI实现画直线时的橡皮筋效果\ReadMe.txt

     文件       1078  2003-11-19 16:08  实例33  用GDI实现画直线时的橡皮筋效果\res\DrawLine.ico

     文件        400  2003-11-19 16:08  实例33  用GDI实现画直线时的橡皮筋效果\res\DrawLine.rc2

     文件       1078  2003-11-19 16:08  实例33  用GDI实现画直线时的橡皮筋效果\res\DrawLineDoc.ico

     文件       1078  2003-11-19 16:08  实例33  用GDI实现画直线时的橡皮筋效果\res\Toolbar.bmp

     文件        496  2003-11-19 16:08  实例33  用GDI实现画直线时的橡皮筋效果\Resource.h

     文件        210  2003-11-19 16:08  实例33  用GDI实现画直线时的橡皮筋效果\StdAfx.cpp

     文件       1054  2003-11-19 16:08  实例33  用GDI实现画直线时的橡皮筋效果\StdAfx.h

     目录          0  2012-05-16 16:43  实例33  用GDI实现画直线时的橡皮筋效果\res

     目录          0  2012-05-16 16:43  实例33  用GDI实现画直线时的橡皮筋效果

----------- ---------  ---------- -----  ----

               204598                    26


评论

共有 条评论

相关资源