other.cpp

来自「一个非常简单地址簿程序」· C++ 代码 · 共 57 行

CPP
57
字号
// Other.cpp : implementation file
//

#include "stdafx.h"
#include "MyAL.h"
#include "Other.h"

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

/////////////////////////////////////////////////////////////////////////////
// COther dialog


COther::COther(CWnd* pParent /*=NULL*/)
	: CDialog(COther::IDD, pParent)
{
	//{{AFX_DATA_INIT(COther)
	m_strFavorites = _T("");
	m_strNickName = _T("");
	m_strSpecialty = _T("");
	m_strWeb = _T("");
	//}}AFX_DATA_INIT
}


void COther::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(COther)
	DDX_Text(pDX, IDC_FAVORITES, m_strFavorites);
	DDX_Text(pDX, IDC_NICKNAME, m_strNickName);
	DDX_Text(pDX, IDC_SPECIALTY, m_strSpecialty);
	DDX_Text(pDX, IDC_WEB, m_strWeb);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(COther, CDialog)
	//{{AFX_MSG_MAP(COther)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// COther message handlers

void COther::OnOK() 
{
}

void COther::OnCancel() 
{
}

⌨️ 快捷键说明

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