Feature: Add language support (beta, not completed)

This commit is contained in:
yuanyuanxiang
2026-01-27 21:48:46 +01:00
parent 02ce01d5e7
commit 5b7c3260a1
70 changed files with 3895 additions and 906 deletions

View File

@@ -15,7 +15,7 @@ DecryptDlg::~DecryptDlg()
void DecryptDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
__super::DoDataExchange(pDX);
DDX_Control(pDX, IDC_DECRYPT_RESULT, m_EditDecrypedResult);
}
@@ -37,11 +37,11 @@ END_MESSAGE_MAP()
BOOL DecryptDlg::OnInitDialog()
{
CDialog::OnInitDialog();
__super::OnInitDialog();
SetIcon(m_hIcon, FALSE);
CString str;
str.Format("%s - 解密数据", m_IPAddress);
str.FormatL("%s - 解密数据", m_IPAddress);
SetWindowText(str);
BYTE bToken = COMMAND_NEXT;