• 大小: 330KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-06-17
  • 语言: 其他
  • 标签: sh  fe  

资源简介

时分秒计时器数字电子课程设计,已成功仿真并焊接出实物。

资源截图

代码片段和文件信息


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

#include “stdafx.h“
#include “afxwinappex.h“
#include “afxdialogex.h“
#include “123.h“
#include “MainFrm.h“

#include “ChildFrm.h“
#include “123Doc.h“
#include “123View.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#endif


// CMy123App

BEGIN_MESSAGE_MAP(CMy123App CWinAppEx)
ON_COMMAND(ID_APP_ABOUT &CMy123App::OnAppAbout)
// 基于文件的标准文档命令
ON_COMMAND(ID_FILE_NEW &CWinAppEx::OnFileNew)
ON_COMMAND(ID_FILE_OPEN &CWinAppEx::OnFileOpen)
// 标准打印设置命令
ON_COMMAND(ID_FILE_PRINT_SETUP &CWinAppEx::OnFilePrintSetup)
END_MESSAGE_MAP()


// CMy123App 构造

CMy123App::CMy123App()
{
m_bHiColorIcons = TRUE;

// 支持重新启动管理器
m_dwRestartManagerSupportFlags = AFX_RESTART_MANAGER_SUPPORT_ALL_ASPECTS;
#ifdef _MANAGED
// 如果应用程序是利用公共语言运行时支持(/clr)构建的,则:
//     1) 必须有此附加设置,“重新启动管理器”支持才能正常工作。
//     2) 在您的项目中,您必须按照生成顺序向 System.Windows.Forms 添加引用。
System::Windows::Forms::Application::SetUnhandledExceptionMode(System::Windows::Forms::UnhandledExceptionMode::ThrowException);
#endif

// TODO: 将以下应用程序 ID 字符串替换为唯一的 ID 字符串;建议的字符串格式
//为 CompanyName.ProductName.SubProduct.VersionInformation
SetAppID(_T(“123.AppID.NoVersion“));

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

// 唯一的一个 CMy123App 对象

CMy123App theApp;


// CMy123App 初始化

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

CWinAppEx::InitInstance();


// 初始化 OLE 库
if (!AfxOleInit())
{
AfxMessageBox(IDP_OLE_INIT_FAILED);
return FALSE;
}

AfxEnableControlContainer();

EnableTaskbarInteraction(FALSE);

// 使用 RichEdit 控件需要  AfxInitRichEdit2()
// AfxInitRichEdit2();

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


InitContextMenuManager();

InitKeyboardManager();

InitTooltipManager();
CMFCToolTipInfo ttParams;
ttParams.m_bVislManagerTheme = TRUE;
theApp.GetTooltipManager()->SetTooltipParams(AFX_TOOLTIP_TYPE_ALL
RUNTIME_CLASS(CMFCToolTipCtrl) &ttParams);

// 注册应用程序的文档模板。文档模板
// 将用作文档、框架窗口和视图之间的连接
CMultiDocTemplate* pDocTemplate;
pDocTemplate = new CMultiDocTemplate(IDR_My123TYPE
RUNTIME_CLASS(CMy123Doc)
RUNTIME_CLASS(CChildframe) // 自定义 MDI 子框架
RUNTIME_CLASS(CMy123View));
if (!pDocTemplate)
return FALSE;
AddDocTemplate(pDocTemplate);

// 创建主 MDI 框架窗口
CMainframe* pMainframe = new CMainframe;
if (!pMainframe || !pMainframe->Loadframe(IDR_MAINframe))
{
delete pMainframe;
return FALSE;
}
m_pMainWnd = pMainframe;
// 仅当具有后缀时才调用 DragAcceptFiles
//  在 MDI 应用程序中,这应在设置

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2014-04-23 19:30  123\
     目录           0  2014-04-23 19:30  123\123\
     文件      126908  2014-04-23 15:14  123\123\123.aps
     文件        5678  2014-04-23 08:38  123\123\123.cpp
     文件         669  2014-04-22 18:49  123\123\123.h
     文件       26962  2014-04-23 15:14  123\123\123.rc
     文件        6414  2014-04-22 10:32  123\123\123.vcxproj
     文件        3076  2014-04-22 10:32  123\123\123.vcxproj.filters
     文件         222  2014-04-21 17:11  123\123\123.vcxproj.user
     文件        2867  2014-04-23 09:13  123\123\123Doc.cpp
     文件         940  2014-04-23 09:13  123\123\123Doc.h
     文件        5469  2014-04-23 19:18  123\123\123View.cpp
     文件        1395  2014-04-23 16:04  123\123\123View.h
     文件         887  2014-04-21 17:01  123\123\ChildFrm.cpp
     文件         519  2014-04-23 15:14  123\123\ChildFrm.h
     文件           1  2009-08-31 02:32  123\123\ClassDiagram1.cd
     目录           0  2014-04-23 19:30  123\123\Debug\
     文件         915  2014-04-21 17:02  123\123\Debug\123.exe.embed.manifest
     文件         980  2014-04-21 17:02  123\123\Debug\123.exe.embed.manifest.res
     文件         640  2014-04-23 19:18  123\123\Debug\123.exe.intermediate.manifest
     文件          40  2014-04-23 19:18  123\123\Debug\123.lastbuildstate
     文件        2730  2014-04-23 19:18  123\123\Debug\123.log
     文件      223054  2014-04-23 16:04  123\123\Debug\123.obj
     文件    33751040  2014-04-21 17:02  123\123\Debug\123.pch
     文件       85028  2014-04-23 15:16  123\123\Debug\123.res
     文件      225278  2014-04-23 16:00  123\123\Debug\123Doc.obj
     文件      215476  2014-04-23 19:18  123\123\Debug\123View.obj
     文件         196  2014-04-21 17:02  123\123\Debug\123_manifest.rc
     文件      484552  2014-04-23 19:18  123\123\Debug\CL.read.1.tlog
     文件      140526  2014-04-23 19:18  123\123\Debug\CL.read.2.tlog
     文件        3814  2014-04-23 19:18  123\123\Debug\CL.write.1.tlog
............此处省略62个文件信息

评论

共有 条评论