temp.cpp
来自「由我为校教务处自主开发的竞赛计分软件。 该软件由“比赛信息管理”、“裁判信息管」· C++ 代码 · 共 44 行
CPP
44 行
// 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 + =
减小字号Ctrl + -
显示快捷键?