LEGOIslandRebuilder/ext/PropertyGrid/PropertyGridMonthCalCtrl.h

26 lines
624 B
C
Raw Normal View History

2022-03-31 14:38:16 -04:00
#pragma once
#define WM_PG_DATESELCHANGED WM_USER+489
// CPropertyGridMonthCalCtrl
class CPropertyGridMonthCalCtrl : public CMonthCalCtrl
{
// DOWNGRADE: Commented out to prevent link error where CRuntimeStatic for CMonthCalCtrl is unresolved
//DECLARE_DYNAMIC(CPropertyGridMonthCalCtrl)
public:
CPropertyGridMonthCalCtrl();
virtual ~CPropertyGridMonthCalCtrl();
protected:
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnKillFocus(CWnd* pNewWnd);
afx_msg void OnMcnSelect(NMHDR *pNMHDR, LRESULT *pResult);
afx_msg UINT OnGetDlgCode();
afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
};