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

📄 dircreatdlg.cpp

📁 这是一个在C环境下编写的操作系统课程设计 包含了内存管理 CPU管理 文件管理 设备管理
💻 CPP
字号:
// DirCreatDlg.cpp : implementation file
//

#include "stdafx.h"
#include "OS.h"
#include "DirCreatDlg.h"

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

/////////////////////////////////////////////////////////////////////////////
// CDirCreatDlg dialog


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


void CDirCreatDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CDirCreatDlg)
	DDX_Text(pDX, IDC_EDIT1, m_edit1);
	DDV_MaxChars(pDX, m_edit1, 3);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// CDirCreatDlg message handlers

⌨️ 快捷键说明

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