• 大小: 7.06MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-10-22
  • 语言: C/C++
  • 标签: MP3播放器  

资源简介

MFC写的音乐播放器完整版(包括歌词显示,代码清晰有注释)我也是为课程设计写的,现在完成任务了,发出来让需要的人参考

资源截图

代码片段和文件信息

// Mp3Player.cpp : Defines the class behaviors for the application.
//

#include “stdafx.h“
#include “Mp3Player.h“
#include “Mp3PlayerDlg.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CMp3PlayerApp

BEGIN_MESSAGE_MAP(CMp3PlayerApp CWinApp)
//{{AFX_MSG_MAP(CMp3PlayerApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
//    DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CMp3PlayerApp construction

CMp3PlayerApp::CMp3PlayerApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CMp3PlayerApp object

CMp3PlayerApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CMp3PlayerApp initialization

BOOL CMp3PlayerApp::InitInstance()
{
AfxEnableControlContainer();

// Standard initialization
// If you are not using these features and wish to reduce the size
//  of your final executable you should remove from the following
//  the specific initialization routines you do not need.

#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif

CMp3PlayerDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
//  dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
//  dismissed with Cancel
}

// Since the dialog has been closed return FALSE so that we exit the
//  application rather than start the application‘s message pump.
return FALSE;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2014-06-14 09:08  Mp3Player\
     目录           0  2014-06-13 23:41  Mp3Player\Debug\
     文件     4998144  2014-06-13 20:26  Mp3Player\Debug\Mp3Player.bsc
     文件     2175038  2014-06-13 23:41  Mp3Player\Debug\Mp3Player.exe
     文件      260128  2014-06-13 23:41  Mp3Player\Debug\Mp3Player.ilk
     文件       14691  2014-06-13 23:26  Mp3Player\Debug\Mp3Player.obj
     文件     6934964  2014-06-12 23:48  Mp3Player\Debug\Mp3Player.pch
     文件      435200  2014-06-13 23:41  Mp3Player\Debug\Mp3Player.pdb
     文件     1716036  2014-06-13 22:28  Mp3Player\Debug\Mp3Player.res
     文件        3824  2014-06-13 23:26  Mp3Player\Debug\Mp3Player.sbr
     文件       56946  2014-06-13 23:41  Mp3Player\Debug\Mp3PlayerDlg.obj
     文件       67267  2014-06-13 23:41  Mp3Player\Debug\Mp3PlayerDlg.sbr
     文件      105562  2014-06-12 23:48  Mp3Player\Debug\StdAfx.obj
     文件     1374947  2014-06-12 23:48  Mp3Player\Debug\StdAfx.sbr
     文件      222208  2014-06-14 00:23  Mp3Player\Debug\vc60.idb
     文件      413696  2014-06-13 23:41  Mp3Player\Debug\vc60.pdb
     文件       36788  2014-06-14 06:39  Mp3Player\Mp3Player.aps
     文件        2153  2014-06-14 08:06  Mp3Player\Mp3Player.clw
     文件        2105  2014-06-12 07:42  Mp3Player\Mp3Player.cpp
     文件        4436  2014-06-13 23:49  Mp3Player\Mp3Player.dsp
     文件         526  2014-06-12 08:25  Mp3Player\Mp3Player.dsw
     文件        1357  2014-06-12 07:42  Mp3Player\Mp3Player.h
     文件       66560  2014-06-14 09:08  Mp3Player\Mp3Player.ncb
     文件       48640  2014-06-14 09:08  Mp3Player\Mp3Player.opt
     文件         254  2014-06-14 09:08  Mp3Player\Mp3Player.plg
     文件        6781  2014-06-14 06:39  Mp3Player\Mp3Player.rc
     文件       16650  2014-06-14 08:06  Mp3Player\Mp3PlayerDlg.cpp
     文件        2291  2014-06-14 05:30  Mp3Player\Mp3PlayerDlg.h
     文件        3633  2014-06-12 07:42  Mp3Player\ReadMe.txt
     目录           0  2014-06-14 06:39  Mp3Player\Release\
     文件       28672  2014-06-14 09:08  Mp3Player\Release\Mp3Player.exe
............此处省略17个文件信息

评论

共有 条评论