lmm.cpp

来自「本原代码集合了树形控件」· C++ 代码 · 共 66 行

CPP
66
字号
// lmm.cpp : implementation file
//

#include "stdafx.h"
#include "hellor14.h"
#include "lmm.h"

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

/////////////////////////////////////////////////////////////////////////////
// lmm dialog


lmm::lmm(CWnd* pParent /*=NULL*/)
	: CDialog(lmm::IDD, pParent)
{
	//{{AFX_DATA_INIT(lmm)
	m_name = _T("");
	m_password = 0;
	m_password1 = 0;
	//}}AFX_DATA_INIT
}


void lmm::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(lmm)
	DDX_Text(pDX, IDC_EDIT1, m_name);
	DDX_Text(pDX, IDC_EDIT2, m_password);
	DDX_Text(pDX, IDC_EDIT3, m_password1);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(lmm, CDialog)
	//{{AFX_MSG_MAP(lmm)
	ON_EN_CHANGE(IDC_EDIT2, OnChangeEdit2)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// lmm message handlers

void lmm::OnChangeEdit2() 
{
	// 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
	
}

void lmm::CalcWindowRect(LPRECT lpClientRect, UINT nAdjustType) 
{
	// TODO: Add your specialized code here and/or call the base class
	
	CDialog::CalcWindowRect(lpClientRect, nAdjustType);
}

⌨️ 快捷键说明

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