PenDlg.cpp
上传用户:qdhmjx
上传日期:2022-07-11
资源大小:2226k
文件大小:1k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // PenDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "ex71.h"
  5. #include "PenDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CPenDlg dialog
  13. CPenDlg::CPenDlg(CWnd* pParent /*=NULL*/)
  14. : CDialog(CPenDlg::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CPenDlg)
  17. m_nWidthEdit = 0;
  18. //}}AFX_DATA_INIT
  19. }
  20. void CPenDlg::DoDataExchange(CDataExchange* pDX)
  21. {
  22. CDialog::DoDataExchange(pDX);
  23. //{{AFX_DATA_MAP(CPenDlg)
  24. DDX_Control(pDX, IDC_SPIN, m_ctrlSpin);
  25. DDX_Control(pDX, IDC_Width, m_ctrlWidthEdit);
  26. DDX_Text(pDX, IDC_Width, m_nWidthEdit);
  27. DDV_MinMaxInt(pDX, m_nWidthEdit, 1, 10);
  28. //}}AFX_DATA_MAP
  29. }
  30. BEGIN_MESSAGE_MAP(CPenDlg, CDialog)
  31. //{{AFX_MSG_MAP(CPenDlg)
  32. //}}AFX_MSG_MAP
  33. END_MESSAGE_MAP()
  34. /////////////////////////////////////////////////////////////////////////////
  35. // CPenDlg message handlers
  36. BOOL CPenDlg::OnInitDialog() 
  37. {
  38. CDialog::OnInitDialog();
  39. m_ctrlSpin.SetBuddy(&m_ctrlWidthEdit); //将编辑框设置为微调控件的伙伴窗口。
  40. m_ctrlSpin.SetRange(1,10);
  41. return TRUE;  // return TRUE unless you set the focus to a control
  42.               // EXCEPTION: OCX Property Pages should return FALSE
  43. }