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 // _MSC_VER > 1000
- // MyFormView.h : header file
- //
- /////////////////////////////////////////////////////////////////////////////
- // MyFormView form view
- #ifndef __AFXEXT_H__
- #include <afxext.h>
- #endif
- #ifdef NEW_SKIN
- class MyFormView : public CFormView
- {
- protected:
- MyFormView(); // protected constructor used by dynamic creation
- DECLARE_DYNCREATE(MyFormView)
- // Form Data
- public:
- int m_id;
- MyFormView(UINT id);
- //{{AFX_DATA(MyFormView)
- // NOTE: the ClassWizard will add data members here
- //}}AFX_DATA
- // Attributes
- public:
- // Operations
- public:
- void SetDlgItemText(int id, CString str);
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(MyFormView)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
- // Implementation
- protected:
- virtual ~MyFormView();
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
- // Generated message map functions
- //{{AFX_MSG(MyFormView)
- // NOTE - the ClassWizard will add and remove member functions here.
- afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
- afx_msg BOOL OnEraseBkgnd(CDC* pDC);
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- #endif
- /////////////////////////////////////////////////////////////////////////////
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_MYFORMVIEW_H__01579EB0_11BB_445B_8DE0_AFEDDF44091A__INCLUDED_)
|