📄 password.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 + -