61 lines
1.2 KiB
C++
61 lines
1.2 KiB
C++
|
|
// FileTransferModeDlg.cpp : ʵ<><CAB5><EFBFBD>ļ<EFBFBD>
|
|||
|
|
//
|
|||
|
|
|
|||
|
|
#include "stdafx.h"
|
|||
|
|
#include "2015Remote.h"
|
|||
|
|
#include "FileTransferModeDlg.h"
|
|||
|
|
#include "afxdialogex.h"
|
|||
|
|
|
|||
|
|
|
|||
|
|
// CFileTransferModeDlg <20>Ի<EFBFBD><D4BB><EFBFBD>
|
|||
|
|
|
|||
|
|
IMPLEMENT_DYNAMIC(CFileTransferModeDlg, CDialog)
|
|||
|
|
|
|||
|
|
CFileTransferModeDlg::CFileTransferModeDlg(CWnd* pParent)
|
|||
|
|
: CDialog(CFileTransferModeDlg::IDD, pParent)
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
CFileTransferModeDlg::~CFileTransferModeDlg()
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
void CFileTransferModeDlg::DoDataExchange(CDataExchange* pDX)
|
|||
|
|
{
|
|||
|
|
CDialog::DoDataExchange(pDX);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
BEGIN_MESSAGE_MAP(CFileTransferModeDlg, CDialog)
|
|||
|
|
ON_CONTROL_RANGE(BN_CLICKED, IDC_OVERWRITE, IDC_JUMP_ALL, OnEndDialog)
|
|||
|
|
END_MESSAGE_MAP()
|
|||
|
|
|
|||
|
|
|
|||
|
|
// CFileTransferModeDlg <20><>Ϣ<EFBFBD><CFA2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
|
|
|||
|
|
|
|||
|
|
VOID CFileTransferModeDlg::OnEndDialog(UINT id)
|
|||
|
|
{
|
|||
|
|
// TODO: Add your control notification handler code here
|
|||
|
|
EndDialog(id);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
BOOL CFileTransferModeDlg::OnInitDialog()
|
|||
|
|
{
|
|||
|
|
CDialog::OnInitDialog();
|
|||
|
|
|
|||
|
|
CString strTips;
|
|||
|
|
strTips.Format("˥<EFBFBD><EFBFBD> զ<><D5A6>.... \" %s \" ", m_strFileName);
|
|||
|
|
|
|||
|
|
for (int i = 0; i < strTips.GetLength(); i += 120)
|
|||
|
|
{
|
|||
|
|
strTips.Insert(i, "\n");
|
|||
|
|
i += 1;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
SetDlgItemText(IDC_TIP, strTips);
|
|||
|
|
return TRUE; // return TRUE unless you set the focus to a control
|
|||
|
|
// <20>쳣: OCX <20><><EFBFBD><EFBFBD>ҳӦ<D2B3><D3A6><EFBFBD><EFBFBD> FALSE
|
|||
|
|
}
|