📄 temp.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 + -