mylogin.cpp
来自「学生管理系统 设置权限 学生管理功能的基本都已经实现」· C++ 代码 · 共 48 行
CPP
48 行
// 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 + =
减小字号Ctrl + -
显示快捷键?