dlgchanguserpass.cpp

来自「网络文件传输,用于显示屏控制系统」· C++ 代码 · 共 48 行

CPP
48
字号
// Dlgchanguserpass.cpp : implementation file
//

#include "stdafx.h"
#include "ctrl.h"
#include "Dlgchanguserpass.h"

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

/////////////////////////////////////////////////////////////////////////////
// CDlgchanguserpass dialog


CDlgchanguserpass::CDlgchanguserpass(CWnd* pParent /*=NULL*/)
	: CDialog(CDlgchanguserpass::IDD, pParent)
{
	//{{AFX_DATA_INIT(CDlgchanguserpass)
	m_idpass = _T("");
	m_username = _T("");
	m_userpass = _T("");
	//}}AFX_DATA_INIT
}


void CDlgchanguserpass::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CDlgchanguserpass)
	DDX_Text(pDX, IDC_IDPASS, m_idpass);
	DDX_Text(pDX, IDC_USERNAME, m_username);
	DDX_Text(pDX, IDC_USERPASS, m_userpass);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CDlgchanguserpass, CDialog)
	//{{AFX_MSG_MAP(CDlgchanguserpass)
		// NOTE: the ClassWizard will add message map macros here
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CDlgchanguserpass message handlers

⌨️ 快捷键说明

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