indentview.h

来自「用VC做的订单管理系统,可以实现网络订单的各种功能」· C头文件 代码 · 共 90 行

H
90
字号
// IndentView.h : interface of the CIndentView class
//
/////////////////////////////////////////////////////////////////////////////

#if !defined(AFX_INDENTVIEW_H__C3E19E0B_3464_4638_9384_81CE86B99BF7__INCLUDED_)
#define AFX_INDENTVIEW_H__C3E19E0B_3464_4638_9384_81CE86B99BF7__INCLUDED_

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


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

public:
	//{{AFX_DATA(CIndentView)
	enum { IDD = IDD_INDENT_FORM };
	//}}AFX_DATA

// Attributes
public:
	CIndentDoc* GetDocument();

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CIndentView)
	public:
	virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	virtual void OnInitialUpdate(); // called first time after construct
	virtual void OnDraw(CDC* pDC);
	//}}AFX_VIRTUAL

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

protected:

// Generated message map functions
protected:
	//{{AFX_MSG(CIndentView)
	afx_msg void OnBtnDefault();
	afx_msg void OnUpdateIndentNewRecord(CCmdUI* pCmdUI);
	afx_msg void OnChangeEditItem01();
	afx_msg void OnChangeEditItem02();
	afx_msg void OnChangeEditItem04();
	afx_msg void OnChangeEditItem06();
	afx_msg void OnChangeEditItem07();
	afx_msg void OnChangeEditItem08();
	afx_msg void OnChangeEditItem09();
	afx_msg void OnChangeEditItem11();
	afx_msg void OnChangeEditItem13();
	afx_msg void OnChangeEditItem14();
	afx_msg void OnDatetimechangeDateItem05(NMHDR* pNMHDR, LRESULT* pResult);
	afx_msg void OnDatetimechangeDateItem12(NMHDR* pNMHDR, LRESULT* pResult);
	afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
	afx_msg void OnSelchangeItem03();
	afx_msg void OnSelchangeItem10();
	afx_msg void OnSelchangeItem15();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
private:
	CDocument* m_pDoc;
};

#ifndef _DEBUG  // debug version in IndentView.cpp
inline CIndentDoc* CIndentView::GetDocument()
   { return (CIndentDoc*)m_pDocument; }
#endif

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

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_INDENTVIEW_H__C3E19E0B_3464_4638_9384_81CE86B99BF7__INCLUDED_)

⌨️ 快捷键说明

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