MainFrm.cpp
上传用户:gao_853
上传日期:2020-04-10
资源大小:362k
文件大小:1k
源码类别:

midi

开发平台:

Visual C++

  1. // MainFrm.cpp : implementation of the CMainFrame class
  2. //
  3. #include "stdafx.h"
  4. #include "AnimatBitmap.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. //}}AFX_MSG_MAP
  17. END_MESSAGE_MAP()
  18. /////////////////////////////////////////////////////////////////////////////
  19. // CMainFrame construction/destruction
  20. CMainFrame::CMainFrame()
  21. {
  22. // TODO: add member initialization code here
  23. }
  24. CMainFrame::~CMainFrame()
  25. {
  26. }
  27. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  28. {
  29. if( !CFrameWnd::PreCreateWindow(cs) )
  30. return FALSE;
  31. // TODO: Modify the Window class or styles here by modifying
  32. //  the CREATESTRUCT cs
  33. cs.style &= ~(LONG)FWS_ADDTOTITLE;
  34. return TRUE;
  35. }
  36. /////////////////////////////////////////////////////////////////////////////
  37. // CMainFrame diagnostics
  38. #ifdef _DEBUG
  39. void CMainFrame::AssertValid() const
  40. {
  41. CFrameWnd::AssertValid();
  42. }
  43. void CMainFrame::Dump(CDumpContext& dc) const
  44. {
  45. CFrameWnd::Dump(dc);
  46. }
  47. #endif //_DEBUG
  48. /////////////////////////////////////////////////////////////////////////////
  49. // CMainFrame message handlers