NEWIMAGESIZE.CPP
上传用户:alisonmail
上传日期:2013-02-28
资源大小:500k
文件大小:1k
源码类别:

图片显示

开发平台:

Visual C++

  1. // NewImageSize.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "ImageView.h"
  5. #include "NewImageSize.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CNewImageSize dialog
  13. CNewImageSize::CNewImageSize(CWnd* pParent /*=NULL*/)
  14. : CDialog(CNewImageSize::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CNewImageSize)
  17. m_nWidth = 0;
  18. m_nHeight = 0;
  19. m_CurrentSize = _T("");
  20. //}}AFX_DATA_INIT
  21. }
  22. void CNewImageSize::DoDataExchange(CDataExchange* pDX)
  23. {
  24. CDialog::DoDataExchange(pDX);
  25. //{{AFX_DATA_MAP(CNewImageSize)
  26. DDX_Text(pDX, IDC_EDIT1, m_nWidth);
  27. DDV_MinMaxInt(pDX, m_nWidth, 1, 2500);
  28. DDX_Text(pDX, IDC_EDIT2, m_nHeight);
  29. DDV_MinMaxInt(pDX, m_nHeight, 1, 2500);
  30. DDX_Text(pDX, IDC_CURRENTSIZE, m_CurrentSize);
  31. //}}AFX_DATA_MAP
  32. }
  33. BEGIN_MESSAGE_MAP(CNewImageSize, CDialog)
  34. //{{AFX_MSG_MAP(CNewImageSize)
  35. //}}AFX_MSG_MAP
  36. END_MESSAGE_MAP()
  37. /////////////////////////////////////////////////////////////////////////////
  38. // CNewImageSize message handlers