📄 manage.cpp
字号:
// Manage.cpp : implementation file
//
#include "stdafx.h"
#include "Laborage.h"
#include "Manage.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CManage dialog
CManage::CManage(CWnd* pParent /*=NULL*/)
: CDialog(CManage::IDD, pParent)
{
//{{AFX_DATA_INIT(CManage)
m_fake = 0.0;
m_give = 0.0;
m_extra = 0.0;
m_treat = 0;
//}}AFX_DATA_INIT
}
void CManage::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CManage)
DDX_Text(pDX, IDC_FAKE, m_fake);
DDX_Text(pDX, IDC_GIVE, m_give);
DDX_Text(pDX, IDC_EXTRA, m_extra);
DDX_Text(pDX, IDC_TREAT, m_treat);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CManage, CDialog)
//{{AFX_MSG_MAP(CManage)
ON_BN_CLICKED(IDCACTION, OnCaction)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CManage message handlers
void CManage::OnCaction()
{
// TODO: Add your control notification handler code here
this->OnOK();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -