📄 frmsuccess.cpp
字号:
// frmSuccess.cpp : implementation file
//
#include "stdafx.h"
#include "MA701TEST_C.h"
#include "frmSuccess.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// frmSuccess dialog
frmSuccess::frmSuccess(CWnd* pParent /*=NULL*/)
: CDialog(frmSuccess::IDD, pParent)
{
//{{AFX_DATA_INIT(frmSuccess)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
}
void frmSuccess::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(frmSuccess)
DDX_Control(pDX, IDC_WORD, m_word);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(frmSuccess, CDialog)
//{{AFX_MSG_MAP(frmSuccess)
ON_WM_LBUTTONDOWN()
ON_WM_SHOWWINDOW()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// frmSuccess message handlers
void frmSuccess::OnLButtonDown(UINT nFlags, CPoint point)
{
frmSuccess::EndDialog(TRUE);
CDialog::OnLButtonDown(nFlags, point);
}
void frmSuccess::OnShowWindow(BOOL bShow, UINT nStatus)
{
CDialog::OnShowWindow(bShow, nStatus);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -