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

Windows编程

开发平台:

Visual C++

  1. // rectdlg.cpp : implementation file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. #include "stdafx.h"
  13. #include "drawcli.h"
  14. #include "rectdlg.h"
  15. #ifdef _DEBUG
  16. #undef THIS_FILE
  17. static char BASED_CODE THIS_FILE[] = __FILE__;
  18. #endif
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CRectDlg dialog
  21. CRectDlg::CRectDlg(CWnd* /*pParent = NULL*/)
  22. : CPropertyPage(CRectDlg::IDD)
  23. {
  24. //{{AFX_DATA_INIT(CRectDlg)
  25. m_bNoFill = FALSE;
  26. m_penSize = 0;
  27. //}}AFX_DATA_INIT
  28. }
  29. void CRectDlg::DoDataExchange(CDataExchange* pDX)
  30. {
  31. CDialog::DoDataExchange(pDX);
  32. //{{AFX_DATA_MAP(CRectDlg)
  33. DDX_Control(pDX, IDC_SPIN1, m_SpinCtrl);
  34. DDX_Check(pDX, IDC_NOFILL, m_bNoFill);
  35. DDX_Text(pDX, IDC_WEIGHT, m_penSize);
  36. DDV_MinMaxUInt(pDX, m_penSize, 0, 100);
  37. //}}AFX_DATA_MAP
  38. }
  39. BEGIN_MESSAGE_MAP(CRectDlg, CDialog)
  40. //{{AFX_MSG_MAP(CRectDlg)
  41. //}}AFX_MSG_MAP
  42. END_MESSAGE_MAP()
  43. /////////////////////////////////////////////////////////////////////////////
  44. // CRectDlg message handlers
  45. BOOL CRectDlg::OnInitDialog()
  46. {
  47. CDialog::OnInitDialog();
  48. m_SpinCtrl.SetRange(0, 100);
  49. m_SpinCtrl.SetBase(10);
  50. m_SpinCtrl.SetPos(1);
  51. return TRUE;
  52. }