📄 mylogin.cpp
字号:
// MyLogin.cpp : implementation file
//
#include "stdafx.h"
#include "student.h"
#include "MyLogin.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CMyLogin dialog
CMyLogin::CMyLogin(CWnd* pParent /*=NULL*/)
: CDialog(CMyLogin::IDD, pParent)
{
//{{AFX_DATA_INIT(CMyLogin)
m_bm = _T("");
m_name = _T("");
m_pass = _T("");
//}}AFX_DATA_INIT
}
void CMyLogin::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CMyLogin)
DDX_CBString(pDX, IDC_COMBO_BM, m_bm);
DDX_Text(pDX, IDC_EDIT_NAME, m_name);
DDX_Text(pDX, IDC_EDIT_PASS, m_pass);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CMyLogin, CDialog)
//{{AFX_MSG_MAP(CMyLogin)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CMyLogin message handlers
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -