⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 actdlg.cpp

📁 讲mfc的书
💻 CPP
字号:
// actdlg.cpp : implementation file
//

#include "stdafx.h"
#include "checker.h"
#include "actdlg.h"

#ifdef _DEBUG
#undef THIS_FILE
static char BASED_CODE THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// ActionDialog dialog


ActionDialog::ActionDialog(CWnd* pParent /*=NULL*/)
	: CDialog(ActionDialog::IDD, pParent)
{
	//{{AFX_DATA_INIT(ActionDialog)
	m_movenum = 0;
	m_action = -1;
	//}}AFX_DATA_INIT
}


void ActionDialog::DoDataExchange(CDataExchange* pDX)
{                       
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(ActionDialog)
	DDX_Text(pDX, IDC_MOVENUM, m_movenum);
	DDX_Radio(pDX, IDC_ACTREMOVE, m_action);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(ActionDialog, CDialog)
	//{{AFX_MSG_MAP(ActionDialog)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()


/////////////////////////////////////////////////////////////////////////////
// ActionDialog message handlers

void ActionDialog::OnOK() 
{
	CDialog::OnOK();
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -