38 lines
1.3 KiB
C++
38 lines
1.3 KiB
C++
#pragma once
|
||
|
||
class CPropertyGrid;
|
||
|
||
class CDefaultStateView : public CView
|
||
{
|
||
DECLARE_DYNCREATE(CDefaultStateView)
|
||
|
||
protected:
|
||
CDefaultStateView(); // 동적 만들기에 사용되는 protected 생성자입니다.
|
||
virtual ~CDefaultStateView();
|
||
|
||
public:
|
||
virtual void OnDraw(CDC* pDC); // 이 뷰를 그리기 위해 재정의되었습니다.
|
||
#ifdef _DEBUG
|
||
virtual void AssertValid() const;
|
||
#ifndef _WIN32_WCE
|
||
virtual void Dump(CDumpContext& dc) const;
|
||
#endif
|
||
#endif
|
||
|
||
protected:
|
||
DECLARE_MESSAGE_MAP()
|
||
|
||
public:
|
||
virtual void OnInitialUpdate();
|
||
|
||
public:
|
||
afx_msg void OnSize(UINT nType, int cx, int cy);
|
||
|
||
public:
|
||
void RefreshView();
|
||
|
||
private:
|
||
CPropertyGrid* m_pProperty;
|
||
};
|
||
|
||
|