DragonNest/Client/EtFileSystemTool/NewFolderDlg.cpp
2024-12-20 16:56:44 +08:00

35 lines
1.2 KiB
C++
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// NewFolderDlg.cpp : 구현 파일입니다.
//
#include "stdafx.h"
#include "NxFileSystemTool.h"
#include "NewFolderDlg.h"
// CNewFolderDlg 대화 상자입니다.
IMPLEMENT_DYNAMIC(CNewFolderDlg, CDialog)
CNewFolderDlg::CNewFolderDlg(CWnd* pParent /*=NULL*/)
: CDialog(CNewFolderDlg::IDD, pParent)
, m_strFolderName(_T(""))
{
}
CNewFolderDlg::~CNewFolderDlg()
{
}
void
CNewFolderDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
DDX_Text(pDX, IDC_FOLDERNAME, m_strFolderName);
}
BEGIN_MESSAGE_MAP(CNewFolderDlg, CDialog)
END_MESSAGE_MAP()
// CNewFolderDlg 메시지 처리기입니다.