node.cpp
来自「用MFC 实现线性表的插入删除等」· C++ 代码 · 共 40 行
CPP
40 行
// node.cpp: implementation of the node class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "sdsd.h"
#include "node.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
node::node()
{
}
node::~node()
{
}
void node::Drawed(CDC*pDC)
{
CString str;
str.Format("%d",single);
pDC->TextOut(point.x+12,point.y-25,str);
pDC->Rectangle(point.x,point.y,point.x+40,point.y+40);
pDC->TextOut(point.x+12,point.y+12,data);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?