list.cpp

来自「这个也是哈夫曼编码译码      这个是基于文档类的」· C++ 代码 · 共 57 行

CPP
57
字号
// list.cpp : implementation file
//

#include "stdafx.h"
#include "Haffman.h"
#include "list.h"
#include "Globe.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// Clist dialog


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

}


void Clist::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(Clist)
	DDX_Control(pDX, IDC_LIST, m_List);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(Clist, CDialog)
	//{{AFX_MSG_MAP(Clist)
	ON_BN_CLICKED(IDC_CLOSE, OnClose)
	ON_MESSAGE(WM_INSERT_ITEM, InsertItme)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// Clist message handlers

void Clist::OnClose() 
{
	// TODO: Add your control notification handler code here
	ShowWindow(SW_HIDE);
}

void Clist::InsertItme()
{
}

⌨️ 快捷键说明

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