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

📄 tnewfolderdlg.cpp

📁 mpq文件的格式就是一种压缩格式
💻 CPP
字号:
/*****************************************************************************/
/* TNewFolderDlg.cpp                      Copyright (c) Ladislav Zezula 2003 */
/*---------------------------------------------------------------------------*/
/* Implementation for NewFolder dialog                                       */
/*---------------------------------------------------------------------------*/
/*   Date    Ver   Who  Comment                                              */
/* --------  ----  ---  -------                                              */
/* 08.04.03  1.00  Lad  The first version of TNewFolderDlg.cpp               */
/*****************************************************************************/

#include "stdafx.h"
#include "resource.h"
#include "TNewFolderDlg.h"

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

/////////////////////////////////////////////////////////////////////////////
// TNewFolderDlg dialog


TNewFolderDlg::TNewFolderDlg(CWnd* pParent /*=NULL*/)
	: CDialog(TNewFolderDlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(TNewFolderDlg)
	m_strFolderName = _T("");
	//}}AFX_DATA_INIT
}


void TNewFolderDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(TNewFolderDlg)
	DDX_Text(pDX, IDC_FOLDERNAME, m_strFolderName);
	DDV_MaxChars(pDX, m_strFolderName, 80);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// TNewFolderDlg message handlers

⌨️ 快捷键说明

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