• 大小: 1.83MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-10-24
  • 语言: C/C++
  • 标签:

资源简介

本模块是基于MFC的对话框的可编辑LIST(可编辑列表控件),希望对你的开发有帮助

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “CListEdit.h“
#include “CListEditDlg.h“

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

/////////////////////////////////////////////////////////////////////////////
// CCListEditApp

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

/////////////////////////////////////////////////////////////////////////////
// CCListEditApp construction

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

/////////////////////////////////////////////////////////////////////////////
// The one and only CCListEditApp object

CCListEditApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CCListEditApp initialization

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

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

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

     文件      35912  2009-07-08 11:27  CListEdit\CListEdit.aps

     文件       1206  2009-07-08 11:26  CListEdit\CListEdit.clw

     文件       2105  2009-07-08 10:56  CListEdit\CListEdit.cpp

     文件       4213  2009-07-08 10:56  CListEdit\CListEdit.dsp

     文件        526  2009-07-08 11:28  CListEdit\CListEdit.dsw

     文件       1357  2009-07-08 10:56  CListEdit\CListEdit.h

     文件     148480  2009-07-08 11:28  CListEdit\CListEdit.ncb

     文件      53760  2009-07-08 11:28  CListEdit\CListEdit.opt

     文件        758  2009-07-08 11:27  CListEdit\CListEdit.plg

     文件       5451  2009-07-08 11:27  CListEdit\CListEdit.rc

     文件       6408  2009-07-08 11:24  CListEdit\CListEditDlg.cpp

     文件       1525  2009-07-08 11:22  CListEdit\CListEditDlg.h

     文件     106606  2009-07-08 11:27  CListEdit\Debug\CListEdit.exe

     文件     210512  2009-07-08 11:27  CListEdit\Debug\CListEdit.ilk

     文件      14804  2009-07-08 11:24  CListEdit\Debug\CListEdit.obj

     文件    5494560  2009-07-08 11:05  CListEdit\Debug\CListEdit.pch

     文件     394240  2009-07-08 11:27  CListEdit\Debug\CListEdit.pdb

     文件       2648  2009-07-08 11:27  CListEdit\Debug\CListEdit.res

     文件      31292  2009-07-08 11:24  CListEdit\Debug\CListEditDlg.obj

     文件     105954  2009-07-08 11:05  CListEdit\Debug\StdAfx.obj

     文件     214016  2009-07-08 11:27  CListEdit\Debug\vc60.idb

     文件     364544  2009-07-08 11:24  CListEdit\Debug\vc60.pdb

     文件       3633  2009-07-08 10:56  CListEdit\ReadMe.txt

     文件       1078  2009-07-08 10:56  CListEdit\res\CListEdit.ico

     文件        401  2009-07-08 10:56  CListEdit\res\CListEdit.rc2

     文件        779  2009-07-08 11:26  CListEdit\resource.h

     文件        211  2009-07-08 10:56  CListEdit\StdAfx.cpp

     文件       1054  2009-07-08 10:56  CListEdit\StdAfx.h

     目录          0  2009-07-08 11:27  CListEdit\Debug

     目录          0  2009-07-08 10:56  CListEdit\res

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

评论

共有 条评论

相关资源