RectpropDlg.cpp
上传用户:ywlong9188
上传日期:2022-05-31
资源大小:2656k
文件大小:2k
源码类别:

远程控制编程

开发平台:

C/C++

  1. // RectpropDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "Proj.h"
  5. #include "ColorStatic.h"
  6. #include "RectpropDlg.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CRectpropDlg dialog
  14. CRectpropDlg::CRectpropDlg(CWnd* pParent /*=NULL*/)
  15. : CDialog(CRectpropDlg::IDD, pParent)
  16. {
  17. //{{AFX_DATA_INIT(CRectpropDlg)
  18. m_bPen = TRUE;
  19. m_nDeep = 0;
  20. m_nStyle = -1;
  21. m_name = _T("");
  22. //}}AFX_DATA_INIT
  23. }
  24. void CRectpropDlg::DoDataExchange(CDataExchange* pDX)
  25. {
  26. CDialog::DoDataExchange(pDX);
  27. //{{AFX_DATA_MAP(CRectpropDlg)
  28. DDX_Check(pDX, IDC_CHECK1, m_bPen);
  29. DDX_Text(pDX, IDC_EDIT1, m_nDeep);
  30. DDV_MinMaxInt(pDX, m_nDeep, 1, 32);
  31. DDX_Radio(pDX, IDC_STYLE_NORMAL, m_nStyle);
  32. DDX_Text(pDX, IDC_RECT_NAME, m_name);
  33. //}}AFX_DATA_MAP
  34. }
  35. BEGIN_MESSAGE_MAP(CRectpropDlg, CDialog)
  36. //{{AFX_MSG_MAP(CRectpropDlg)
  37. //}}AFX_MSG_MAP
  38. END_MESSAGE_MAP()
  39. /////////////////////////////////////////////////////////////////////////////
  40. // CRectpropDlg message handlers
  41. BOOL CRectpropDlg::OnInitDialog() 
  42. {
  43. CDialog::OnInitDialog();
  44. m_line.SubclassDlgItem(IDC_COLOR_LINE,this);
  45. m_face.SubclassDlgItem(IDC_COLOR_FACE,this);
  46. m_highLight.SubclassDlgItem(IDC_COLOR_HIGHLIGHT,this);
  47. m_shadow.SubclassDlgItem(IDC_COLOR_SHADOW,this);
  48. return TRUE;  // return TRUE unless you set the focus to a control
  49.               // EXCEPTION: OCX Property Pages should return FALSE
  50. }