/* ========================================================================== * ÀÛ ¼º ÀÚ : À̼ø±Ô * ÀÛ ¼º ÀÏ : 2006.12.11 * ³» ¿ë : ¹öư * ÁÖÀÇ»çÇ× : *===========================================================================*/ #pragma once /// ¹öư class cButton : public CButton { public: cButton(); virtual ~cButton(); protected: virtual void DrawItem( LPDRAWITEMSTRUCT ds ); protected: void DrawFrame( CDC* dc, LPDRAWITEMSTRUCT ds ); void DrawBorder( CDC* dc, LPDRAWITEMSTRUCT ds ); void DrawCaption( CDC* dc, LPDRAWITEMSTRUCT ds ); protected: DECLARE_MESSAGE_MAP() afx_msg BOOL OnEraseBkgnd( CDC* dc ); };