• 大小: 1.92MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2022-03-26
  • 语言: C/C++
  • 标签: MFC  计算器  

资源简介

MFC计算器 支持表达式计算等功能。。。。。。。。。。。。。。。。。

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “Calculator.h“
#include “CalculatorDlg.h“

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

/////////////////////////////////////////////////////////////////////////////
// CCalculatorApp

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

/////////////////////////////////////////////////////////////////////////////
// CCalculatorApp construction

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

/////////////////////////////////////////////////////////////////////////////
// The one and only CCalculatorApp object

CCalculatorApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CCalculatorApp initialization

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

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

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

     文件      38700  2011-09-10 16:16  Calculator\Calculator.aps

     文件       3079  2011-09-10 17:03  Calculator\Calculator.clw

     文件       2119  2011-09-08 17:35  Calculator\Calculator.cpp

     文件       4231  2011-09-08 17:35  Calculator\Calculator.dsp

     文件        545  2011-09-08 17:35  Calculator\Calculator.dsw

     文件       1368  2011-09-08 17:35  Calculator\Calculator.h

     文件      66560  2011-09-10 17:03  Calculator\Calculator.ncb

     文件      55808  2011-09-10 17:03  Calculator\Calculator.opt

     文件       1016  2011-09-10 17:03  Calculator\Calculator.plg

     文件       7908  2011-09-10 16:16  Calculator\Calculator.rc

     文件      23448  2011-09-10 17:03  Calculator\CalculatorDlg.cpp

     文件       2740  2011-09-10 15:03  Calculator\CalculatorDlg.h

     文件     143457  2011-09-10 17:03  Calculator\Debug\Calculator.exe

     文件     504688  2011-09-10 17:03  Calculator\Debug\Calculator.ilk

     文件      14237  2011-09-10 15:19  Calculator\Debug\Calculator.obj

     文件    5502316  2011-09-08 19:06  Calculator\Debug\Calculator.pch

     文件     582656  2011-09-10 17:03  Calculator\Debug\Calculator.pdb

     文件       4396  2011-09-10 16:16  Calculator\Debug\Calculator.res

     文件     163110  2011-09-10 17:03  Calculator\Debug\CalculatorDlg.obj

     文件     105823  2011-09-08 19:06  Calculator\Debug\StdAfx.obj

     文件     254976  2011-09-10 17:03  Calculator\Debug\vc60.idb

     文件     471040  2011-09-10 17:03  Calculator\Debug\vc60.pdb

     文件       3651  2011-09-08 17:35  Calculator\ReadMe.txt

     文件       1078  2011-09-10 16:16  Calculator\res\Calculator.ico

     文件        402  2011-09-08 17:35  Calculator\res\Calculator.rc2

     文件       2712  2011-09-10 15:19  Calculator\resource.h

     文件        212  2011-09-08 17:35  Calculator\StdAfx.cpp

     文件       1054  2011-09-08 17:35  Calculator\StdAfx.h

     目录          0  2011-09-09 00:14  Calculator\Debug

     目录          0  2011-09-09 00:14  Calculator\res

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

评论

共有 条评论