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

按钮控件

开发平台:

Visual C++

  1. #ifndef _DLGADVANCED_H_
  2. #define _DLGADVANCED_H_
  3. #include "BtnST.h"
  4. #include "WinXPButtonST.h"
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. class CDlgAdvanced : public CDialog
  9. {
  10. public:
  11. CDlgAdvanced(CWnd* pParent = NULL);
  12. //{{AFX_DATA(CDlgAdvanced)
  13. enum { IDD = IDD_ADVANCED };
  14. //}}AFX_DATA
  15. // ClassWizard generated virtual function overrides
  16. //{{AFX_VIRTUAL(CDlgAdvanced)
  17. protected:
  18. virtual void DoDataExchange(CDataExchange* pDX);
  19. //}}AFX_VIRTUAL
  20. protected:
  21. // Generated message map functions
  22. //{{AFX_MSG(CDlgAdvanced)
  23. virtual BOOL OnInitDialog();
  24. afx_msg void OnItem1();
  25. afx_msg void OnItem2();
  26. //}}AFX_MSG
  27. private:
  28. void OnCancel();
  29. void OnOK();
  30. CWinXPButtonST m_btnDerived;
  31. CButtonST m_btnHyperLink;
  32. CButtonST m_btnCursor;
  33. CButtonST m_btnFocusRect;
  34. CButtonST m_chkCheckbox;
  35. CButtonST m_btnBitmap;
  36. BOOL m_bTestCheck; // A variable used to show DDX_Check feature
  37. DECLARE_MESSAGE_MAP()
  38. };
  39. //{{AFX_INSERT_LOCATION}}
  40. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  41. #endif