FileDownInfo.cpp
上传用户:qhonly
上传日期:2013-06-10
资源大小:487k
文件大小:1k
源码类别:

界面编程

开发平台:

Visual C++

  1. // FileDownInfo.cpp : 实现文件
  2. //
  3. #include "stdafx.h"
  4. #include "WebGet.h"
  5. #include "FileDownInfo.h"
  6. // CFileDownInfo 对话框
  7. IMPLEMENT_DYNAMIC(CFileDownInfo, CPropertyPage)
  8. CFileDownInfo::CFileDownInfo()
  9. : CPropertyPage(CFileDownInfo::IDD)
  10. {
  11. }
  12. CFileDownInfo::~CFileDownInfo()
  13. {
  14. }
  15. void CFileDownInfo::DoDataExchange(CDataExchange* pDX)
  16. {
  17. CPropertyPage::DoDataExchange(pDX);
  18. DDX_Control(pDX, IDC_LIST1, m_ListFileDownInfo);
  19. }
  20. BEGIN_MESSAGE_MAP(CFileDownInfo, CPropertyPage)
  21. ON_WM_SIZE()
  22. END_MESSAGE_MAP()
  23. // CFileDownInfo 消息处理程序
  24. void CFileDownInfo::OnSize(UINT nType, int cx, int cy)
  25. {
  26. CPropertyPage::OnSize(nType, cx, cy);
  27. if(IsWindow(m_ListFileDownInfo.m_hWnd))m_ListFileDownInfo.m_Container.MoveWindow(0,0,cx,cy);
  28. }