listctrleditbox.h

来自「3D reconstruction, medical image process」· C头文件 代码 · 共 66 行

H
66
字号
#if !defined(AFX_LISTCTRLEDITBOX_H__73E18467_1249_42B6_8A29_7527FF116334__INCLUDED_)#define AFX_LISTCTRLEDITBOX_H__73E18467_1249_42B6_8A29_7527FF116334__INCLUDED_#if _MSC_VER > 1000#pragma once#endif // _MSC_VER > 1000// ListCtrlEditBox.h : header file///////////////////////////////////////////////////////////////////////////////// RxListCtrlEditBox window#define LISTCTRL_CHANGED		0x0001typedef struct{	NMHDR		hdr;	int			iRow;	int			iCol;	LPCTSTR		lpszText;} NMLCEB_CTRL;class RxListCtrlEditBox : public CEdit{// Constructionpublic:	RxListCtrlEditBox();// Attributespublic:	int		m_iRow, m_iCol;	CString	m_strText;// Operationspublic:	void	SetListCtrlInfo		(int iRow, int iCol, LPCTSTR lpszText);	void	SendMessageToParent	();// Overrides	// ClassWizard generated virtual function overrides	//{{AFX_VIRTUAL(RxListCtrlEditBox)	protected:	virtual void PostNcDestroy();	//}}AFX_VIRTUAL// Implementationpublic:	virtual ~RxListCtrlEditBox();	// Generated message map functionsprotected:	//{{AFX_MSG(RxListCtrlEditBox)	afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);	afx_msg void OnKillFocus(CWnd* pNewWnd);	afx_msg void OnChar(UINT nChar, UINT nRepCnt, UINT nFlags);	//}}AFX_MSG	DECLARE_MESSAGE_MAP()};///////////////////////////////////////////////////////////////////////////////{{AFX_INSERT_LOCATION}}// Microsoft Visual C++ will insert additional declarations immediately before the previous line.#endif // !defined(AFX_LISTCTRLEDITBOX_H__73E18467_1249_42B6_8A29_7527FF116334__INCLUDED_)

⌨️ 快捷键说明

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