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

📄 userpassworddlg.cpp

📁 使用HOOPS库开发的一个教学演示工具。
💻 CPP
字号:
// UserPasswordDlg.cpp : implementation file//#include "stdafx.h"#include "resource.h"#include "UserPasswordDlg.h"#ifdef _DEBUG#define new DEBUG_NEW#undef THIS_FILEstatic char THIS_FILE[] = __FILE__;#endif/////////////////////////////////////////////////////////////////////////////// CUserPasswordDlg dialogCUserPasswordDlg::CUserPasswordDlg(CString csRealm, CWnd* pParent /*=NULL*/)	: CDialog(CUserPasswordDlg::IDD, pParent){	m_csRealm = csRealm;	//{{AFX_DATA_INIT(CUserPasswordDlg)	m_csPassword = _T("");	m_csUser = _T("");	//}}AFX_DATA_INIT}void CUserPasswordDlg::DoDataExchange(CDataExchange* pDX){	CDialog::DoDataExchange(pDX);	//{{AFX_DATA_MAP(CUserPasswordDlg)	DDX_Text(pDX, IDC_EDIT_PASSWORD, m_csPassword);	DDX_Text(pDX, IDC_EDIT_USER, m_csUser);	DDX_Text(pDX, IDC_REALM, m_csRealm);	//}}AFX_DATA_MAP}BEGIN_MESSAGE_MAP(CUserPasswordDlg, CDialog)	//{{AFX_MSG_MAP(CUserPasswordDlg)		// NOTE: the ClassWizard will add message map macros here	//}}AFX_MSG_MAPEND_MESSAGE_MAP()/////////////////////////////////////////////////////////////////////////////// CUserPasswordDlg message handlers

⌨️ 快捷键说明

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