⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 vc08aview.h

📁 Visual C++ 6.0编程基础与范例
💻 H
字号:
// vc08View.h : interface of the CVc08View class
//
/////////////////////////////////////////////////////////////////////////////

#if !defined(AFX_VC08AVIEW_H__374FA20E_A553_11D2_A010_0060085A8930__INCLUDED_)
#define AFX_VC08AVIEW_H__374FA20E_A553_11D2_A010_0060085A8930__INCLUDED_

#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000

class CVc08aView : public CFormView
{
protected: // create from serialization only
	CVc08aView();
	DECLARE_DYNCREATE(CVc08aView)

public:
	//{{AFX_DATA(CVc08View)
	enum { IDD = IDD_VC08A_FORM };
	CString	m_name;
	float	m_price;
	int m_index;
	//}}AFX_DATA

// Attributes
public:
	CVc08aDoc* GetDocument();
// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CVc08View)
	public:
	virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
	virtual void OnInitialUpdate();
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
	virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
	virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
	virtual void OnPrint(CDC* pDC, CPrintInfo*);
	//}}AFX_VIRTUAL

// Implementation
public:
	virtual ~CVc08aView();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:

// Generated message map functions
protected:
	//{{AFX_MSG(CVc08View)
	afx_msg void OnNewRec();
	afx_msg void OnFirstRec();
	afx_msg void OnUpdateFirstRec(CCmdUI* pCmdUI);
	afx_msg void OnLastRec();
	afx_msg void OnUpdateLastRec(CCmdUI* pCmdUI);
	afx_msg void OnNextRec();
	afx_msg void OnUpdateNextRec(CCmdUI* pCmdUI);
	afx_msg void OnPrevRec();
	afx_msg void OnUpdatePrevRec(CCmdUI* pCmdUI);
	afx_msg void OnDelRec();
	afx_msg void OnUpdateDelRec(CCmdUI* pCmdUI);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()

};

#ifndef _DEBUG  // debug version in vc08View.cpp
inline CVc08aDoc* CVc08aView::GetDocument()
   { return (CVc08aDoc*)m_pDocument; }
#endif

/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Developer Studio will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_VC08AVIEW_H__374FA20E_A553_11D2_A010_0060085A8930__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -