GuiServerExplorer.h
上传用户:wlkj888
上传日期:2022-08-01
资源大小:806k
文件大小:1k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. #pragma once
  2. #include "guicontrolbar.h"
  3. #include "GuiContainer.h"
  4. class CGuiServerExplorer : public CGuiControlBar
  5. {
  6. protected:
  7. CTreeCtrl   m_TreeServerExplorer;
  8. CGuiContainer m_ctServer;
  9. CGuiMiniTool  m_miServer;
  10. public:
  11. void OnConnect();
  12. void OnServer();
  13. void OnExplorer();
  14. CGuiServerExplorer(void);
  15. virtual ~CGuiServerExplorer(void);
  16. int CreatServerExplorer();
  17. virtual void StyleDispl(DWORD dwDsp=GUISTYLE_XP)
  18. {
  19. m_StyleDisplay=dwDsp;
  20. m_miServer.StyleDispl(dwDsp);
  21. CGuiControlBar::StyleDispl(dwDsp);
  22. }
  23. DECLARE_MESSAGE_MAP()
  24. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  25. };