frmsuccess.cpp

来自「一個ping , html ,ftp 三功能合一的網路程式源代碼 , 我是來自台」· C++ 代码 · 共 57 行

CPP
57
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?