?? 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 + -