⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 proxyauthdlg.cpp

📁 网络聊天工具原代码 VC源码(网络编程
💻 CPP
字号:
// ProxyAuthDlg.cpp : implementation file
//

#include "stdafx.h"
#include "Chat.h"
#include "ProxyAuthDlg.h"

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

/////////////////////////////////////////////////////////////////////////////
// CProxyAuthDlg dialog


CProxyAuthDlg::CProxyAuthDlg(CWnd* pParent /*=NULL*/)
	: CDialog(CProxyAuthDlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(CProxyAuthDlg)
	m_szProxy = _T("");
	m_szUserName = _T("");
	m_szPass = _T("");
	//}}AFX_DATA_INIT
}


void CProxyAuthDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CProxyAuthDlg)
	DDX_Text(pDX, IDC_AUTH_SERVER, m_szProxy);
	DDV_MaxChars(pDX, m_szProxy, 128);
	DDX_Text(pDX, IDC_EDIT1, m_szUserName);
	DDV_MaxChars(pDX, m_szUserName, 64);
	DDX_Text(pDX, IDC_EDIT2, m_szPass);
	DDV_MaxChars(pDX, m_szPass, 64);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// CProxyAuthDlg message handlers

⌨️ 快捷键说明

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