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

按钮控件

开发平台:

Visual C++

  1. #ifndef _DLGBASIC_H_
  2. #define _DLGBASIC_H_
  3. #include "BtnST.h"
  4. #if _MSC_VER > 1000
  5. #pragma once
  6. #endif // _MSC_VER > 1000
  7. class CDlgBasic : public CDialog
  8. {
  9. public:
  10. CDlgBasic(CWnd* pParent = NULL);
  11. //{{AFX_DATA(CDlgBasic)
  12. enum { IDD = IDD_BASIC };
  13. // NOTE: the ClassWizard will add data members here
  14. //}}AFX_DATA
  15. // ClassWizard generated virtual function overrides
  16. //{{AFX_VIRTUAL(CDlgBasic)
  17. protected:
  18. virtual void DoDataExchange(CDataExchange* pDX);
  19. //}}AFX_VIRTUAL
  20. protected:
  21. // Generated message map functions
  22. //{{AFX_MSG(CDlgBasic)
  23. virtual BOOL OnInitDialog();
  24. afx_msg void OnBtnDisabled();
  25. //}}AFX_MSG
  26. DECLARE_MESSAGE_MAP()
  27. private:
  28. void OnCancel();
  29. void OnOK();
  30. CButtonST m_btnStandard;
  31. CButtonST m_btnHalloween;
  32. CButtonST m_btnKeyManager;
  33. CButtonST m_btnDisabled;
  34. CButtonST m_btnLamp;
  35. CButtonST m_btnZip;
  36. CButtonST m_btnJpeg;
  37. CButtonST m_btnCDRom;
  38. CButtonST m_btnTooltip;
  39. CButtonST m_btnSearch;
  40. CButtonST m_btnBack;
  41. CButtonST m_btnNext;
  42. };
  43. //{{AFX_INSERT_LOCATION}}
  44. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  45. #endif