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