📄 filedowndlg.h
字号:
// FileDownDlg.h : header file
//
#if !defined(AFX_FILEDOWNDLG_H__0355523F_0763_4748_9A27_CB6F9997C20E__INCLUDED_)
#define AFX_FILEDOWNDLG_H__0355523F_0763_4748_9A27_CB6F9997C20E__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
/////////////////////////////////////////////////////////////////////////////
// CFileDownDlg dialog
class CFileDownDlg : public CDialog
{
// Construction
public:
CFileDownDlg(CWnd* pParent = NULL); // standard constructor
CString strurl; //URL地址
CString strlocalname; //文件存放的路径
CString strftpserver; //FTP服务器名称,不包括协议名
CString strftpfile; //FTP服务器上的文件名,相对路径
CString strresult; //URL中文件名
// Dialog Data
//{{AFX_DATA(CFileDownDlg)
enum { IDD = IDD_FILEDOWN_DIALOG };
CListCtrl m_filelist;
//}}AFX_DATA
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CFileDownDlg)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
HICON m_hIcon;
// Generated message map functions
//{{AFX_MSG(CFileDownDlg)
virtual BOOL OnInitDialog();
afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
afx_msg void OnPaint();
afx_msg HCURSOR OnQueryDragIcon();
afx_msg void OnDownLoad();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_FILEDOWNDLG_H__0355523F_0763_4748_9A27_CB6F9997C20E__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -