⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 temp.cpp

📁 由我为校教务处自主开发的竞赛计分软件。 该软件由“比赛信息管理”、“裁判信息管理”、“选手信息管理”、“比赛计分排序”等几个模块组成。基于MFC技术
💻 CPP
字号:
// temp.cpp : 实现文件
//

#include "stdafx.h"
#include "计分程序 by WS.h"
#include "temp.h"
#include ".\temp.h"


// temp 对话框

IMPLEMENT_DYNAMIC(temp, CDialog)
temp::temp(CWnd* pParent /*=NULL*/)
	: CDialog(temp::IDD, pParent)
{
}

temp::~temp()
{
}

void temp::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	DDX_Control(pDX, IDC_LIST2, saishi);
}


BEGIN_MESSAGE_MAP(temp, CDialog)
END_MESSAGE_MAP()


// temp 消息处理程序

BOOL temp::OnInitDialog()
{
	CDialog::OnInitDialog();

	// TODO:  在此添加额外的初始化

	return TRUE;  // return TRUE unless you set the focus to a control
	// 异常: OCX 属性页应返回 FALSE
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -