ChildView.cpp
上传用户:qhonly
上传日期:2013-06-10
资源大小:487k
文件大小:1k
源码类别:

界面编程

开发平台:

Visual C++

  1. // ChildView.cpp : CChildView 类的实现
  2. //
  3. #include "stdafx.h"
  4. #include "WebGet.h"
  5. #include "ChildView.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #endif
  9. // CChildView
  10. CChildView::CChildView()
  11. {
  12. }
  13. CChildView::~CChildView()
  14. {
  15. }
  16. BEGIN_MESSAGE_MAP(CChildView, CWnd)
  17. ON_WM_PAINT()
  18. END_MESSAGE_MAP()
  19. // CChildView 消息处理程序
  20. BOOL CChildView::PreCreateWindow(CREATESTRUCT& cs) 
  21. {
  22. if (!CWnd::PreCreateWindow(cs))
  23. return FALSE;
  24. cs.dwExStyle |= WS_EX_CLIENTEDGE;
  25. cs.style &= ~WS_BORDER;
  26. cs.lpszClass = AfxRegisterWndClass(CS_HREDRAW|CS_VREDRAW|CS_DBLCLKS, 
  27. ::LoadCursor(NULL, IDC_ARROW), reinterpret_cast<HBRUSH>(COLOR_WINDOW+1), NULL);
  28. return TRUE;
  29. }
  30. void CChildView::OnPaint() 
  31. {
  32. CPaintDC dc(this); // 用于绘制的设备上下文
  33. // TODO: 在此处添加消息处理程序代码
  34. // 不要为绘制消息而调用 CWnd::OnPaint()
  35. }