nodefont.cpp
来自「对文本文件进行huffman编码」· C++ 代码 · 共 29 行
CPP
29 行
// NodeFont.cpp : 实现文件
//
#include "stdafx.h"
#include "huffman.h"
#include "NodeFont.h"
// CNodeFont
IMPLEMENT_DYNAMIC(CNodeFont, CFontDialog)
CNodeFont::CNodeFont(LPLOGFONT lplfInitial, DWORD dwFlags, CDC* pdcPrinter, CWnd* pParentWnd) :
CFontDialog(lplfInitial, dwFlags, pdcPrinter, pParentWnd)
{
}
CNodeFont::~CNodeFont()
{
}
BEGIN_MESSAGE_MAP(CNodeFont, CFontDialog)
END_MESSAGE_MAP()
// CNodeFont 消息处理程序
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?