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

📄 mydiag.cpp

📁 是编译器我花了好几个礼拜才编好的确实难的这是个不错的编译器
💻 CPP
字号:
// MyDiag.cpp : implementation file
//

#include "stdafx.h"
#include "哈夫曼编码译码器.h"
#include "MyDiag.h"

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

/////////////////////////////////////////////////////////////////////////////
// CMyDiag dialog


CMyDiag::CMyDiag(CWnd* pParent /*=NULL*/)
	: CDialog(CMyDiag::IDD, pParent)
{
	//{{AFX_DATA_INIT(CMyDiag)
	m_strHelp = _T("");
	m_strInput = _T("");
	//}}AFX_DATA_INIT
}


void CMyDiag::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CMyDiag)
	DDX_Text(pDX, IDC_EDIT_HELP, m_strHelp);
	DDX_Text(pDX, IDC_EDIT_INPUT, m_strInput);
	DDV_MaxChars(pDX, m_strInput, 60);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// CMyDiag message handlers

⌨️ 快捷键说明

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