MainFrm.cpp
上传用户:xyf7799
上传日期:2022-08-01
资源大小:2008k
文件大小:2k
源码类别:

棋牌游戏

开发平台:

Visual C++

  1. // MainFrm.cpp : implementation of the CMainFrame class
  2. //
  3. #include "stdafx.h"
  4. #include "重做斗地主.h"
  5. #include "MainFrm.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CMainFrame
  13. IMPLEMENT_DYNCREATE(CMainFrame, CFrameWnd)
  14. BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd)
  15. //{{AFX_MSG_MAP(CMainFrame)
  16. // NOTE - the ClassWizard will add and remove mapping macros here.
  17. //    DO NOT EDIT what you see in these blocks of generated code !
  18. //}}AFX_MSG_MAP
  19. END_MESSAGE_MAP()
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CMainFrame construction/destruction
  22. CMainFrame::CMainFrame()
  23. {
  24. // TODO: add member initialization code here
  25. }
  26. CMainFrame::~CMainFrame()
  27. {
  28. }
  29. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  30. {
  31. if( !CFrameWnd::PreCreateWindow(cs) )
  32. return FALSE;
  33. // TODO: Modify the Window class or styles here by modifying
  34. //  the CREATESTRUCT cs
  35. cs.style = WS_OVERLAPPED | WS_CAPTION | FWS_ADDTOTITLE
  36. | WS_THICKFRAME | WS_SYSMENU | WS_MINIMIZEBOX;
  37. cs.cx=650;
  38. cs.cy=465;
  39. return TRUE;
  40. }
  41. /////////////////////////////////////////////////////////////////////////////
  42. // CMainFrame diagnostics
  43. #ifdef _DEBUG
  44. void CMainFrame::AssertValid() const
  45. {
  46. CFrameWnd::AssertValid();
  47. }
  48. void CMainFrame::Dump(CDumpContext& dc) const
  49. {
  50. CFrameWnd::Dump(dc);
  51. }
  52. #endif //_DEBUG
  53. /////////////////////////////////////////////////////////////////////////////
  54. // CMainFrame message handlers