📄 save.cpp
字号:
// save.cpp : implementation file
//
#include "stdafx.h"
#include "VCShow.h"
#include "save.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// save dialog
save::save(CWnd* pParent /*=NULL*/)
: CDialog(save::IDD, pParent)
{
//{{AFX_DATA_INIT(save)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
}
void save::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(save)
// NOTE: the ClassWizard will add DDX and DDV calls here
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(save, CDialog)
//{{AFX_MSG_MAP(save)
ON_CBN_EDITCHANGE(IDC_COMBO1, OnEditchangeCombo1)
ON_EN_CHANGE(IDC_EDIT4, OnChangeEdit4)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// save message handlers
void save::OnEditchangeCombo1()
{
// TODO: Add your control notification handler code here
}
void save::OnChangeEdit4()
{
// TODO: If this is a RICHEDIT control, the control will not
// send this notification unless you override the CDialog::OnInitDialog()
// function and call CRichEditCtrl().SetEventMask()
// with the ENM_CHANGE flag ORed into the mask.
// TODO: Add your control notification handler code here
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -