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

📄 explaingame.cpp

📁 人工智能中的八数码难题,人工智能中的八数码难题
💻 CPP
字号:
// ExplainGame.cpp : implementation file
//

#include "stdafx.h"
#include "EightNumber.h"
#include "ExplainGame.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CExplainGame dialog


CExplainGame::CExplainGame(CWnd* pParent /*=NULL*/)
	: CDialog(CExplainGame::IDD, pParent)
{
	//{{AFX_DATA_INIT(CExplainGame)
		// NOTE: the ClassWizard will add member initialization here
	//}}AFX_DATA_INIT
}


void CExplainGame::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CExplainGame)
	DDX_Control(pDX, IDOK, m_IDOk);
	DDX_Control(pDX, IDCANCEL, m_IDCancel);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CExplainGame, CDialog)
	//{{AFX_MSG_MAP(CExplainGame)
		// NOTE: the ClassWizard will add message map macros here
	//}}AFX_MSG_MAP
	ON_BN_CLICKED(IDOK, OnBnClickedOk)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CExplainGame message handlers

void CExplainGame::OnBnClickedOk()
{
	// TODO: 在此添加控件通知处理程序代码
	OnOK();
}

⌨️ 快捷键说明

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