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

资源简介

MFC计算器,实现加减乘除,小数点,清除等功能

资源截图

代码片段和文件信息


// MyCounter.cpp : 定义应用程序的类行为。
//

#include “stdafx.h“
#include “MyCounter.h“
#include “MyCounterDlg.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#endif


// CMyCounterApp

BEGIN_MESSAGE_MAP(CMyCounterApp CWinApp)
ON_COMMAND(ID_HELP &CWinApp::onhelp)
END_MESSAGE_MAP()


// CMyCounterApp 构造

CMyCounterApp::CMyCounterApp()
{
// 支持重新启动管理器
m_dwRestartManagerSupportFlags = AFX_RESTART_MANAGER_SUPPORT_RESTART;

// TODO: 在此处添加构造代码,
// 将所有重要的初始化放置在 InitInstance 中
}


// 唯一的一个 CMyCounterApp 对象

CMyCounterApp theApp;


// CMyCounterApp 初始化

BOOL CMyCounterApp::InitInstance()
{
// 如果一个运行在 Windows XP 上的应用程序清单指定要
// 使用 ComCtl32.dll 版本 6 或更高版本来启用可视化方式,
//则需要 InitCommonControlsEx()。否则,将无法创建窗口。
INITCOMMONCONTROLSEX InitCtrls;
InitCtrls.dwSize = sizeof(InitCtrls);
// 将它设置为包括所有要在应用程序中使用的
// 公共控件类。
InitCtrls.dwICC = ICC_WIN95_CLASSES;
InitCommonControlsEx(&InitCtrls);

CWinApp::InitInstance();


AfxEnableControlContainer();

// 创建 shell 管理器,以防对话框包含
// 任何 shell 树视图控件或 shell 列表视图控件。
CShellManager *pShellManager = new CShellManager;

// 标准初始化
// 如果未使用这些功能并希望减小
// 最终可执行文件的大小,则应移除下列
// 不需要的特定初始化例程
// 更改用于存储设置的注册表项
// TODO: 应适当修改该字符串,
// 例如修改为公司或组织名
SetRegistryKey(_T(“应用程序向导生成的本地应用程序“));

CMyCounterDlg dlg;
m_pMainWnd = &dlg;
INT_PTR nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: 在此放置处理何时用
//  “确定”来关闭对话框的代码
}
else if (nResponse == IDCANCEL)
{
// TODO: 在此放置处理何时用
//  “取消”来关闭对话框的代码
}

// 删除上面创建的 shell 管理器。
if (pShellManager != NULL)
{
delete pShellManager;
}

// 由于对话框已关闭,所以将返回 FALSE 以便退出应用程序,
//  而不是启动应用程序的消息泵。
return FALSE;
}



BOOL CMyCounterApp::PreTranslateMessage(MSG* pMsg)
{
// TODO: 在此添加专用代码和/或调用基类

return CWinApp::PreTranslateMessage(pMsg);
}

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

     文件   88473600  2011-10-28 14:18  MyCounter\ipch\mycounter-392f3b40\mycounter-a4cd08f2.ipch

     文件          1  2009-08-31 02:32  MyCounter\MyCounter\ClassDiagram1.cd

     文件          1  2009-08-31 02:32  MyCounter\MyCounter\ClassDiagram2.cd

     文件       1976  2011-10-28 14:19  MyCounter\MyCounter\Debug\cl.command.1.tlog

     文件      65044  2011-10-28 14:19  MyCounter\MyCounter\Debug\CL.read.1.tlog

     文件       1058  2011-10-28 14:19  MyCounter\MyCounter\Debug\CL.write.1.tlog

     文件          2  2011-10-28 14:19  MyCounter\MyCounter\Debug\link-cvtres.read.1.tlog

     文件          2  2011-10-28 14:19  MyCounter\MyCounter\Debug\link-cvtres.write.1.tlog

     文件       1476  2011-10-28 14:19  MyCounter\MyCounter\Debug\link.command.1.tlog

     文件       5186  2011-10-28 14:19  MyCounter\MyCounter\Debug\link.read.1.tlog

     文件        864  2011-10-28 14:19  MyCounter\MyCounter\Debug\link.write.1.tlog

     文件        706  2011-10-28 14:19  MyCounter\MyCounter\Debug\mt.command.1.tlog

     文件        824  2011-10-28 14:19  MyCounter\MyCounter\Debug\mt.read.1.tlog

     文件        434  2011-10-28 14:19  MyCounter\MyCounter\Debug\mt.write.1.tlog

     文件        667  2011-10-28 14:19  MyCounter\MyCounter\Debug\MyCounter.exe.embed.manifest

     文件        732  2011-10-28 14:19  MyCounter\MyCounter\Debug\MyCounter.exe.embed.manifest.res

     文件        381  2011-10-28 14:19  MyCounter\MyCounter\Debug\MyCounter.exe.intermediate.manifest

     文件         43  2011-10-28 14:19  MyCounter\MyCounter\Debug\MyCounter.lastbuildstate

     文件      13028  2011-10-28 14:19  MyCounter\MyCounter\Debug\MyCounter.log

     文件      29606  2011-10-28 14:19  MyCounter\MyCounter\Debug\MyCounter.obj

     文件   33619968  2011-10-28 14:19  MyCounter\MyCounter\Debug\MyCounter.pch

     文件      80952  2011-10-28 14:19  MyCounter\MyCounter\Debug\MyCounter.res

     文件     100007  2011-10-28 14:19  MyCounter\MyCounter\Debug\MyCounterDlg.obj

     文件        208  2011-10-28 14:19  MyCounter\MyCounter\Debug\MyCounter_manifest.rc

     文件        928  2011-10-28 14:19  MyCounter\MyCounter\Debug\rc.command.1.tlog

     文件       6310  2011-10-28 14:19  MyCounter\MyCounter\Debug\rc.read.1.tlog

     文件        422  2011-10-28 14:19  MyCounter\MyCounter\Debug\rc.write.1.tlog

     文件     678396  2011-10-28 14:19  MyCounter\MyCounter\Debug\stdafx.obj

     文件    1960960  2011-10-28 14:19  MyCounter\MyCounter\Debug\vc100.idb

     文件    3428352  2011-10-28 14:19  MyCounter\MyCounter\Debug\vc100.pdb

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

评论

共有 条评论