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

按钮控件

开发平台:

Visual C++

  1. #ifndef _DLGTRANSPARENT_H_
  2. #define _DLGTRANSPARENT_H_
  3. #include "BkDialog.h"
  4. #include "BtnST.h"
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. class CDlgTransparent : public CBkDialog
  9. {
  10. public:
  11. CDlgTransparent(CWnd* pParent = NULL);
  12. //{{AFX_DATA(CDlgTransparent)
  13. enum { IDD = IDD_TRANSPARENT };
  14. // NOTE: the ClassWizard will add data members here
  15. //}}AFX_DATA
  16. // ClassWizard generated virtual function overrides
  17. //{{AFX_VIRTUAL(CDlgTransparent)
  18. protected:
  19. virtual void DoDataExchange(CDataExchange* pDX);
  20. //}}AFX_VIRTUAL
  21. protected:
  22. // Generated message map functions
  23. //{{AFX_MSG(CDlgTransparent)
  24. virtual BOOL OnInitDialog();
  25. afx_msg void OnSetFocus(CWnd* pOldWnd);
  26. //}}AFX_MSG
  27. private:
  28. void OnCancel();
  29. void OnOK();
  30. CButtonST m_btnLogOff;
  31. CButtonST m_btnWorkgroup;
  32. CButtonST m_btnOpen;
  33. CButtonST m_btnSearch;
  34. CButtonST m_btnExplorer;
  35. CButtonST m_btnHelp;
  36. CButtonST m_btnAbout;
  37. CButtonST m_btnCannibal;
  38. CButtonST m_chkCheckbox;
  39. BOOL m_bFirstTime;
  40. DECLARE_MESSAGE_MAP()
  41. };
  42. //{{AFX_INSERT_LOCATION}}
  43. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  44. #endif