wndview.cpp
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:1k
源码类别:

对话框与窗口

开发平台:

Visual C++

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