creattree.cpp
来自「汉诺塔算法演示程序」· C++ 代码 · 共 34 行
CPP
34 行
// CreatTree.cpp : implementation file
//
#include "stdafx.h"
#include "Algorithm2.h"
#include "CreatTree.h"
// CCreatTree dialog
IMPLEMENT_DYNAMIC(CCreatTree, CDialog)
CCreatTree::CCreatTree(CWnd* pParent /*=NULL*/)
: CDialog(CCreatTree::IDD, pParent)
{
}
CCreatTree::~CCreatTree()
{
}
void CCreatTree::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
DDX_CBString(pDX, IDC_EDIT_TREE, m_tree);
}
BEGIN_MESSAGE_MAP(CCreatTree, CDialog)
END_MESSAGE_MAP()
// CCreatTree message handlers
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?