ModifyTLabelEdit.cpp
上传用户:cnjubao
上传日期:2007-01-02
资源大小:34k
文件大小:1k
源码类别:
ListView/ListBox
开发平台:
Visual C++
- /************************************
- REVISION LOG ENTRY
- Revision By: Mihai Filimon
- Revised on 11/2/98 7:03:03 PM
- Comments: ModifyTLabelEdit.cpp: implementation of the CModifyTLabelEdit class.
- ************************************/
- #include "stdafx.h"
- #include "QListCtrl.h"
- #include "ModifyTLabelEdit.h"
- #ifdef _DEBUG
- #undef THIS_FILE
- static char THIS_FILE[]=__FILE__;
- #define new DEBUG_NEW
- #endif
- //////////////////////////////////////////////////////////////////////
- // Construction/Destruction
- //////////////////////////////////////////////////////////////////////
- // Function name : CModifyTLabelEdit::CModifyTLabelEdit
- // Description : default constrcutor
- // Return type :
- CModifyTLabelEdit::CModifyTLabelEdit(LPCTSTR lpszDefaultText):CTLabelEdit(lpszDefaultText)
- {
- }
- // Function name : CModifyTLabelEdit::~CModifyTLabelEdit
- // Description : virtual destructor
- // Return type :
- CModifyTLabelEdit::~CModifyTLabelEdit()
- {
- }
- // Function name : CModifyTLabelEdit::WindowProc
- // Description :
- // Return type : LRESULT
- // Argument : UINT message
- // Argument : WPARAM wParam
- // Argument : LPARAM lParam
- LRESULT CModifyTLabelEdit::WindowProc( UINT message, WPARAM wParam, LPARAM lParam )
- {
- if (message == WM_COMMAND)
- if (HIWORD(wParam) == EN_CHANGE)
- GetParent()->SendMessage(message, wParam, lParam);
- return CTLabelEdit::WindowProc( message, wParam, lParam );
- }