📄 other.cpp
字号:
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -