资源简介
MFC 计算器源代码,支持基本的 + - * / 以及退格等功能,另外可以自行设置各个文本框的字体和整个窗体的颜色,等等。
另外可以根据MFC 计算器源代码的设计过程文档,自行扩展功能。
代码片段和文件信息
// Computer.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “Computer.h“
#include “ComputerDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CComputerApp
BEGIN_MESSAGE_MAP(CComputerApp CWinApp)
//{{AFX_MSG_MAP(CComputerApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CComputerApp construction
CComputerApp::CComputerApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CComputerApp object
CComputerApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CComputerApp initialization
BOOL CComputerApp::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
CComputerDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 37396 2015-06-09 22:12 Computer\Computer.aps
文件 2362 2015-07-08 17:22 Computer\Computer.clw
文件 2091 2015-06-04 20:30 Computer\Computer.cpp
文件 4195 2015-06-04 20:30 Computer\Computer.dsp
文件 522 2015-06-04 20:30 Computer\Computer.dsw
文件 1346 2015-06-04 20:30 Computer\Computer.h
文件 58368 2015-07-08 17:22 Computer\Computer.ncb
文件 49664 2015-07-08 17:22 Computer\Computer.opt
文件 948 2015-06-16 07:03 Computer\Computer.plg
文件 7390 2015-06-09 22:12 Computer\Computer.rc
文件 11207 2015-06-16 07:06 Computer\ComputerDlg.cpp
文件 2177 2015-06-10 18:15 Computer\ComputerDlg.h
文件 3615 2015-06-04 20:30 Computer\ReadMe.txt
文件 1078 2015-06-04 20:30 Computer\res\Computer.ico
文件 400 2015-06-04 20:30 Computer\res\Computer.rc2
文件 2207 2015-06-06 10:21 Computer\resource.h
文件 210 2015-06-04 20:30 Computer\StdAfx.cpp
文件 1054 2015-06-04 20:30 Computer\StdAfx.h
目录 0 2015-06-04 20:30 Computer\res
目录 0 2015-07-08 17:22 Computer
----------- --------- ---------- ----- ----
186230 20
相关资源
- MFC 导入D3D模型文件
- 旋转的风车,使用MFC编写
- MFC用户名密码登陆对话框
- C++实现银行储蓄系统 MFC界面
- 空间后方交会(基于MFC)
- 音频感知哈希函数的提取matlab codes
- vs2008(mfc)通过ADO连接SQL SERVER 2008源
- 用vc++ mfc 编写的一个网页浏览器
- VC++(MFC)实现FTP功能(源代码)
- wxWidget多语言移植到MFC动态库DLL
- MFC对话框动态接收数据插入List列表并
- 单片空间后方交会,求外方位元素、
- MFC实现完整GoBang五子棋
- 吕鑫-VS2015之C.C++.MFC等完整视频链接
- VC++ MFC 的计算器的详细设计
- MFC简易音乐播放器源码
- opengl+mfc画线填充左键单击绘包围线、
- MFC可编辑列表框控件
- MFC 多线程之间通过消息传递数据
- MFC71D.dll
- 重绘CListCtrl的scrollbarheaderctrl和items的
- mfc渐变进度条
- MFC实现K均值算法
- MFC中嵌入显示opencv图像
- MFC的CheckBox自绘类
- MFC 状态栏进度条
- vs mfc opengl配置教程
- vc++基于MFC实现多媒体播放器源码
- MFC实现的操作系统页面置换FIFO、LRU、
- VC++ 实现定时关机或休眠-MFC 对话框应
评论
共有 条评论