DateDialog.h
上传用户:shilei2004
上传日期:2020-07-18
资源大小:83k
文件大小:1k
源码类别:

RichEdit

开发平台:

Visual C++

  1. #if !defined(AFX_DATEDIALOG_H__FE76C468_1944_4564_8D58_A21A3BE95485__INCLUDED_)
  2. #define AFX_DATEDIALOG_H__FE76C468_1944_4564_8D58_A21A3BE95485__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // DateDialog.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CDateDialog dialog
  10. class CDateDialog : public CDialog
  11. {
  12. // Construction
  13. public:
  14. CDateDialog(CWnd* pParent = NULL);   // standard constructor
  15. static SYSTEMTIME m_time;
  16. static LCID m_id;
  17. static CListBox* m_pListBox;
  18. static BOOL CALLBACK DateFmtEnumProc(LPTSTR lpszFormatString);
  19. static BOOL CALLBACK TimeFmtEnumProc(LPTSTR lpszFormatString);
  20. // Dialog Data
  21. //{{AFX_DATA(CDateDialog)
  22. enum { IDD = IDD_DATE_DIALOG };
  23. CListBox m_listBox;
  24. CString m_strSel;
  25. //}}AFX_DATA
  26. // Overrides
  27. // ClassWizard generated virtual function overrides
  28. //{{AFX_VIRTUAL(CDateDialog)
  29. protected:
  30. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  31. //}}AFX_VIRTUAL
  32. // Implementation
  33. protected:
  34. // Generated message map functions
  35. //{{AFX_MSG(CDateDialog)
  36. virtual BOOL OnInitDialog();
  37. //}}AFX_MSG
  38. DECLARE_MESSAGE_MAP()
  39. };
  40. //{{AFX_INSERT_LOCATION}}
  41. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  42. #endif // !defined(AFX_DATEDIALOG_H__FE76C468_1944_4564_8D58_A21A3BE95485__INCLUDED_)