12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- #if !defined(AFX_MYFORMVIEW_H__01579EB0_11BB_445B_8DE0_AFEDDF44091A__INCLUDED_)
- #define AFX_MYFORMVIEW_H__01579EB0_11BB_445B_8DE0_AFEDDF44091A__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif
- #ifndef __AFXEXT_H__
- #include <afxext.h>
- #endif
- #ifdef NEW_SKIN
- class MyFormView : public CFormView
- {
- protected:
- MyFormView();
- DECLARE_DYNCREATE(MyFormView)
- public:
- int m_id;
- MyFormView(UINT id);
-
-
-
- public:
- public:
- void SetDlgItemText(int id, CString str);
-
-
- protected:
- virtual void DoDataExchange(CDataExchange* pDX);
-
- protected:
- virtual ~MyFormView();
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
-
-
-
- afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
- afx_msg BOOL OnEraseBkgnd(CDC* pDC);
-
- DECLARE_MESSAGE_MAP()
- };
- #endif
- #endif
|