DlgAbout.h
上传用户:yangxun008
上传日期:2008-03-25
资源大小:3863k
文件大小:1k
源码类别:

按钮控件

开发平台:

Visual C++

  1. #ifndef _DLGABOUT_H_
  2. #define _DLGABOUT_H_
  3. #include "BtnST.h"
  4. #if _MSC_VER > 1000
  5. #pragma once
  6. #endif // _MSC_VER > 1000
  7. class CDlgAbout : public CDialog
  8. {
  9. public:
  10. CDlgAbout(CWnd* pParent = NULL);
  11. //{{AFX_DATA(CDlgAbout)
  12. enum { IDD = IDD_ABOUT };
  13. // NOTE: the ClassWizard will add data members here
  14. //}}AFX_DATA
  15. // ClassWizard generated virtual function overrides
  16. //{{AFX_VIRTUAL(CDlgAbout)
  17. protected:
  18. virtual void DoDataExchange(CDataExchange* pDX);
  19. //}}AFX_VIRTUAL
  20. protected:
  21. // Generated message map functions
  22. //{{AFX_MSG(CDlgAbout)
  23. virtual BOOL OnInitDialog();
  24. //}}AFX_MSG
  25. private:
  26. void OnCancel();
  27. void OnOK();
  28. CButtonST m_btnSTLogo;
  29. CButtonST m_btnFace;
  30. DECLARE_MESSAGE_MAP()
  31. };
  32. //{{AFX_INSERT_LOCATION}}
  33. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  34. #endif