📄 myleadout.cpp
字号:
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -