dlgmimetype.cpp

来自「ftpserver very good sample」· C++ 代码 · 共 59 行

CPP
59
字号
// DlgMimeType.cpp : implementation file//#include "stdafx.h"#include "warmmcsnapin.h"#include "DlgMimeType.h"#ifdef _DEBUG#define new DEBUG_NEW#undef THIS_FILEstatic char THIS_FILE[] = __FILE__;#endif/////////////////////////////////////////////////////////////////////////////// CDlgMimeType dialogCDlgMimeType::CDlgMimeType(CWnd* pParent /*=NULL*/)	: CDialog(CDlgMimeType::IDD, pParent){	//{{AFX_DATA_INIT(CDlgMimeType)	m_Extension = _T("");	m_Value = _T("");	//}}AFX_DATA_INIT}void CDlgMimeType::DoDataExchange(CDataExchange* pDX){	CDialog::DoDataExchange(pDX);	//{{AFX_DATA_MAP(CDlgMimeType)	DDX_Text(pDX, IDC_EXT, m_Extension);	DDX_CBString(pDX, IDC_VALUE, m_Value);	//}}AFX_DATA_MAP}BEGIN_MESSAGE_MAP(CDlgMimeType, CDialog)	//{{AFX_MSG_MAP(CDlgMimeType)	ON_EN_CHANGE(IDC_EXT, OnChange)	ON_CBN_EDITCHANGE(IDC_VALUE, OnChange)	ON_CBN_SELCHANGE(IDC_VALUE, OnChange)	//}}AFX_MSG_MAPEND_MESSAGE_MAP()/////////////////////////////////////////////////////////////////////////////// CDlgMimeType message handlersvoid CDlgMimeType::OnChange() {	// TODO: If this is a RICHEDIT control, the control will not	// send this notification unless you override the CDialog::OnInitDialog()	// function and call CRichEditCtrl().SetEventMask()	// with the ENM_CHANGE flag ORed into the mask.		// TODO: Add your control notification handler code here	}

⌨️ 快捷键说明

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