GuiButtonDoc.cpp
上传用户:wlkj888
上传日期:2022-08-01
资源大小:806k
文件大小:1k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // GuiButtonDoc.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "GuiButtonDoc.h"
  5. #ifdef _DEBUG
  6. #define new DEBUG_NEW
  7. #undef THIS_FILE
  8. static char THIS_FILE[] = __FILE__;
  9. #endif
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CGuiButtonDoc
  12. CGuiButtonDoc::CGuiButtonDoc()
  13. {
  14. }
  15. CGuiButtonDoc::~CGuiButtonDoc()
  16. {
  17. }
  18. BEGIN_MESSAGE_MAP(CGuiButtonDoc, CWnd)
  19. //{{AFX_MSG_MAP(CGuiButtonDoc)
  20. ON_WM_CREATE()
  21. ON_WM_PAINT()
  22. //}}AFX_MSG_MAP
  23. END_MESSAGE_MAP()
  24. /////////////////////////////////////////////////////////////////////////////
  25. // CGuiButtonDoc message handlers
  26. BOOL CGuiButtonDoc::Create(DWORD dwStyle, CWnd* pParentWnd, UINT nID)
  27. {
  28. // TODO: Add your specialized code here and/or call the base class
  29. return CWnd::Create(NULL, NULL, dwStyle, CRect(0,0,0,0), pParentWnd, nID, NULL);
  30. }
  31. int CGuiButtonDoc::OnCreate(LPCREATESTRUCT lpCreateStruct) 
  32. {
  33. if (CWnd::OnCreate(lpCreateStruct) == -1)
  34. return -1;
  35. // TODO: Add your specialized creation code here
  36. return 0;
  37. }
  38. void CGuiButtonDoc::OnPaint() 
  39. {
  40. CPaintDC dc(this); // device context for painting
  41. // TODO: Add your message handler code here
  42. // Do not call CWnd::OnPaint() for painting messages
  43. }