ZOOMDLG.CPP
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // zoomdlg.cpp : implementation file
  2. //
  3. //
  4. // This is a part of the Microsoft Foundation Classes C++ library.
  5. // Copyright (C) 1992-1998 Microsoft Corporation
  6. // All rights reserved.
  7. //
  8. // This source code is only intended as a supplement to the
  9. // Microsoft Foundation Classes Reference and related
  10. // electronic documentation provided with the library.
  11. // See these sources for detailed information regarding the
  12. // Microsoft Foundation Classes product.
  13. #include "stdafx.h"
  14. #include "hiersvr.h"
  15. #include "zoomdlg.h"
  16. #ifdef _DEBUG
  17. #undef THIS_FILE
  18. static char BASED_CODE THIS_FILE[] = __FILE__;
  19. #endif
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CZoomDlg dialog
  22. CZoomDlg::CZoomDlg(CWnd* pParent /*=NULL*/)
  23. : CDialog(CZoomDlg::IDD, pParent)
  24. {
  25. //{{AFX_DATA_INIT(CZoomDlg)
  26. m_zoomX = 0;
  27. m_zoomY = 0;
  28. //}}AFX_DATA_INIT
  29. }
  30. void CZoomDlg::DoDataExchange(CDataExchange* pDX)
  31. {
  32. CDialog::DoDataExchange(pDX);
  33. //{{AFX_DATA_MAP(CZoomDlg)
  34. DDX_Text(pDX, IDC_EDIT1, m_zoomX);
  35. DDV_MinMaxInt(pDX, m_zoomX, 10, 500);
  36. DDX_Text(pDX, IDC_EDIT2, m_zoomY);
  37. DDV_MinMaxInt(pDX, m_zoomY, 10, 500);
  38. //}}AFX_DATA_MAP
  39. }
  40. BEGIN_MESSAGE_MAP(CZoomDlg, CDialog)
  41. //{{AFX_MSG_MAP(CZoomDlg)
  42. // NOTE: the ClassWizard will add message map macros here
  43. //}}AFX_MSG_MAP
  44. END_MESSAGE_MAP()
  45. /////////////////////////////////////////////////////////////////////////////
  46. // CZoomDlg message handlers