InfoWnd.cpp
资源名称:Netmanag.zip [点击查看]
上传用户:geanq888
上传日期:2007-01-03
资源大小:316k
文件大小:1k
源码类别:
Ftp客户端
开发平台:
Visual C++
- // InfoWnd.cpp : implementation file
- //
- #include "stdafx.h"
- #include "netmanager.h"
- #include "InfoWnd.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CInfoWnd
- CInfoWnd::CInfoWnd()
- {
- }
- CInfoWnd::~CInfoWnd()
- {
- }
- BEGIN_MESSAGE_MAP(CInfoWnd, CEdit)
- //{{AFX_MSG_MAP(CInfoWnd)
- ON_WM_SETFOCUS()
- ON_WM_RBUTTONDOWN()
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CInfoWnd message handlers
- void CInfoWnd::OnSetFocus(CWnd* pOldWnd)
- {
- pOldWnd->SetFocus();
- }
- /////////////////////////////////////////////////////////////////////////////
- void CInfoWnd::OnRButtonDown(UINT nFlags, CPoint point)
- {
- SetSel(0, -1);
- CEdit::OnRButtonDown(nFlags, point);
- }