NumericSpinDlg.h
上传用户:jiyingjie
上传日期:2007-01-02
资源大小:16k
文件大小:1k
源码类别:

编辑框

开发平台:

Visual C++

  1. // NumericSpinDlg.h : header file
  2. //
  3. #if !defined(AFX_NUMERICSPINDLG_H__6E427E06_AEB0_11D2_A6C9_00600844997A__INCLUDED_)
  4. #define AFX_NUMERICSPINDLG_H__6E427E06_AEB0_11D2_A6C9_00600844997A__INCLUDED_
  5. #if _MSC_VER >= 1000
  6. #pragma once
  7. #endif // _MSC_VER >= 1000
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CNumericSpinDlg dialog
  10. #include "NumSpinCtrl.h"
  11. #include "NumEdit.h"
  12. class CNumericSpinDlg : public CDialog
  13. {
  14. // Construction
  15. public:
  16. CNumericSpinDlg(CWnd* pParent = NULL); // standard constructor
  17. // Dialog Data
  18. //{{AFX_DATA(CNumericSpinDlg)
  19. enum { IDD = IDD_NUMERICSPIN_DIALOG };
  20. CNumSpinCtrl m_Spin;
  21. CNumEdit m_Edit;
  22. //}}AFX_DATA
  23. // ClassWizard generated virtual function overrides
  24. //{{AFX_VIRTUAL(CNumericSpinDlg)
  25. protected:
  26. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  27. //}}AFX_VIRTUAL
  28. // Implementation
  29. protected:
  30. HICON m_hIcon;
  31. // Generated message map functions
  32. //{{AFX_MSG(CNumericSpinDlg)
  33. virtual BOOL OnInitDialog();
  34. afx_msg void OnPaint();
  35. afx_msg HCURSOR OnQueryDragIcon();
  36. virtual void OnOK();
  37. //}}AFX_MSG
  38. DECLARE_MESSAGE_MAP()
  39. };
  40. //{{AFX_INSERT_LOCATION}}
  41. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  42. #endif // !defined(AFX_NUMERICSPINDLG_H__6E427E06_AEB0_11D2_A6C9_00600844997A__INCLUDED_)