Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #pragma once
- /////////////////////////////////////////////////////////////////////////////
- // CMyPropertySheet
- class CMyPropertySheet : public CMFCPropertySheet
- {
- DECLARE_DYNAMIC(CMyPropertySheet)
- // Construction
- public:
- CMyPropertySheet();
- // Attributes
- public:
- // Operations
- public:
- // Overrides
- virtual BOOL OnInitDialog();
- virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
- void AdjustControlsLayout();
- int ReposButtons(BOOL bRedraw);
- // Implementation
- public:
- virtual ~CMyPropertySheet();
- protected:
- afx_msg void OnSize(UINT nType, int cx, int cy);
- DECLARE_MESSAGE_MAP()
- private:
- CSize m_sizePrev;
- BOOL m_bInitialized;
- };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement