📄 enhancement.cpp
字号:
// enhancement.cpp : implementation file
//
#include "stdafx.h"
#include "eFinger.h"
#include "enhancement.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// enhancement dialog
enhancement::enhancement(CWnd* pParent /*=NULL*/)
: CDialog(enhancement::IDD, pParent)
{
//{{AFX_DATA_INIT(enhancement)
m_text = _T("");
//}}AFX_DATA_INIT
}
void enhancement::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(enhancement)
DDX_Control(pDX, IDC_PROGRESS1, m_prog);
DDX_Text(pDX, IDC_text, m_text);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(enhancement, CDialog)
//{{AFX_MSG_MAP(enhancement)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
ON_MESSAGE(WM_USER_DIALOG,enhanceFunc)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// enhancement message handlers
void enhancement::enhanceFunc()
{
AfxMessageBox("here ");
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -