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. public:
  10. void OnConnect();
  11. void OnServer();
  12. void OnExplorer();
  13. CGuiServerExplorer(void);
  14. virtual ~CGuiServerExplorer(void);
  15. int CreatServerExplorer();
  16. virtual void StyleDispl(DWORD dwDsp=GUISTYLE_XP)
  17. {
  18. m_StyleDisplay=dwDsp;
  19. CGuiControlBar::StyleDispl(dwDsp);
  20. }
  21. DECLARE_MESSAGE_MAP()
  22. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  23. };