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

📄 password.cpp

📁 地理信息系统ArcEngine二次开发:实现读取地图文档功能。
💻 CPP
字号:
// Password.cpp : Implementation of CPassword
#include "stdafx.h"
#include "Password.h"

/////////////////////////////////////////////////////////////////////////////
// CPassword

LRESULT CPassword::OnInitDialog(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled)
{
	//Center the dialog on the screen
	CenterWindow();
	return TRUE;  // Let the system set the focus
}

LRESULT CPassword:: OnOK(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& bHandled)
{
	GetDlgItemText(IDC_PASSWORD, m_password, 16);
	EndDialog(wID);
	return 0;
}

LRESULT CPassword::OnCancel(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& bHandled)
{
	EndDialog(wID);
	return 0;
}

⌨️ 快捷键说明

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