📄 listctrleditbox.h
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -