myleadout.cpp

来自「一个学生考试成绩管理的半成品」· C++ 代码 · 共 45 行

CPP
45
字号
// MyLeadOut.cpp : 实现文件
//

#include "stdafx.h"
#include "ScoreGather.h"
#include "MyLeadOut.h"
#include ".\myleadout.h"


// CMyLeadOut 对话框

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

CMyLeadOut::~CMyLeadOut()
{
}

void CMyLeadOut::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
}


BEGIN_MESSAGE_MAP(CMyLeadOut, CDialog)
	ON_BN_CLICKED(ID_OK, OnBnClickedOk)
END_MESSAGE_MAP()


// CMyLeadOut 消息处理程序

void CMyLeadOut::OnBnClickedOk()
{
	OnOK();
}

void CMyLeadOut::OnBnClickedCancel()
{
	// TODO: 在此添加控件通知处理程序代码
	OnCancel();
}

⌨️ 快捷键说明

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