| 123456789101112131415161718192021222324252627282930313233 |
- /***********************************************
- * 工作室 : 软景工作室
- * 作者 : 肖尚德
- * 用途 :
- *************************************************/
- #ifndef _SKINCONTROLBAR_H
- #define _SKINCONTROLBAR_H
- #if _MSC_VER > 1000
- #pragma once
- #endif
- #include "skinwnd.h"
- class CSkinControlBar : public CSkinWnd
- {
- public:
- CSkinControlBar( void );
- ~CSkinControlBar( void );
- virtual void InstallSkin( HWND hWnd );
- void LoadSkin();
- void OnPaint();
- BOOL OnEraseBkgnd( CDC * pDC );
- void OnNcPaint( HRGN rgn1 );
- void DrawControlBar( CDC * pDC );
- protected:
- CWindowSkin * m_pWinSkin;
- };
- #endif
|