edititem.h

来自「库存管理系统」· C头文件 代码 · 共 61 行

H
61
字号
#if !defined(AFX_EDITITEM_H__834127E5_9297_11D5_8AFA_DAC6E5A1C54B__INCLUDED_)
#define AFX_EDITITEM_H__834127E5_9297_11D5_8AFA_DAC6E5A1C54B__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// EditItem.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// CEditItem window

class CEditItem : public CEdit
{
// Construction
public:
	CEditItem(int nItem, int nSubItem, CString &sContent);

// Attributes
public:

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CEditItem)
	public:
	virtual BOOL PreTranslateMessage(MSG* pMsg);
	//}}AFX_VIRTUAL

// Implementation
public:
	virtual ~CEditItem();

	// Generated message map functions
protected:
	int		m_nItem;
	int		m_nSubItem;
	CString m_sContent;
	BOOL	m_bVK_ESCAPE;
	//{{AFX_MSG(CEditItem)
	afx_msg void OnChar(UINT nChar, UINT nRepCnt, UINT nFlags);
	afx_msg void OnNcDestroy();
	afx_msg void OnKillFocus(CWnd* pNewWnd);
	afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
	//}}AFX_MSG

	DECLARE_MESSAGE_MAP()

public:
	BOOL B_NEXT;
};

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

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

#endif // !defined(AFX_EDITITEM_H__834127E5_9297_11D5_8AFA_DAC6E5A1C54B__INCLUDED_)

⌨️ 快捷键说明

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