ChildView.cpp
上传用户:deligs
上传日期:2007-01-08
资源大小:43k
文件大小:1k
源码类别:

网络编程

开发平台:

Visual C++

  1. // ChildView.cpp : implementation of the CChildView class
  2. //
  3. #include "stdafx.h"
  4. #include "MyMonitor.h"
  5. #include "ChildView.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CChildView
  13. CChildView::CChildView()
  14. {
  15. }
  16. CChildView::~CChildView()
  17. {
  18. }
  19. BEGIN_MESSAGE_MAP(CChildView,CWnd )
  20. //{{AFX_MSG_MAP(CChildView)
  21. ON_WM_PAINT()
  22. //}}AFX_MSG_MAP
  23. END_MESSAGE_MAP()
  24. /////////////////////////////////////////////////////////////////////////////
  25. // CChildView message handlers
  26. BOOL CChildView::PreCreateWindow(CREATESTRUCT& cs) 
  27. {
  28. if (!CWnd::PreCreateWindow(cs))
  29. return FALSE;
  30. cs.dwExStyle |= WS_EX_CLIENTEDGE;
  31. cs.style &= ~WS_BORDER;
  32. cs.lpszClass = AfxRegisterWndClass(CS_HREDRAW|CS_VREDRAW|CS_DBLCLKS, 
  33. ::LoadCursor(NULL, IDC_ARROW), HBRUSH(COLOR_WINDOW+1), NULL);
  34. return TRUE;
  35. }
  36. void CChildView::OnPaint() 
  37. {
  38. CPaintDC dc(this); // device context for painting
  39. // TODO: Add your message handler code here
  40. // Do not call CWnd::OnPaint() for painting messages
  41. }