资源简介
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 Mp3Pla
目录 0 2014-06-13 23:41 Mp3Pla
文件 4998144 2014-06-13 20:26 Mp3Pla
文件 2175038 2014-06-13 23:41 Mp3Pla
文件 260128 2014-06-13 23:41 Mp3Pla
文件 14691 2014-06-13 23:26 Mp3Pla
文件 6934964 2014-06-12 23:48 Mp3Pla
文件 435200 2014-06-13 23:41 Mp3Pla
文件 1716036 2014-06-13 22:28 Mp3Pla
文件 3824 2014-06-13 23:26 Mp3Pla
文件 56946 2014-06-13 23:41 Mp3Pla
文件 67267 2014-06-13 23:41 Mp3Pla
文件 105562 2014-06-12 23:48 Mp3Pla
文件 1374947 2014-06-12 23:48 Mp3Pla
文件 222208 2014-06-14 00:23 Mp3Pla
文件 413696 2014-06-13 23:41 Mp3Pla
文件 36788 2014-06-14 06:39 Mp3Pla
文件 2153 2014-06-14 08:06 Mp3Pla
文件 2105 2014-06-12 07:42 Mp3Pla
文件 4436 2014-06-13 23:49 Mp3Pla
文件 526 2014-06-12 08:25 Mp3Pla
文件 1357 2014-06-12 07:42 Mp3Pla
文件 66560 2014-06-14 09:08 Mp3Pla
文件 48640 2014-06-14 09:08 Mp3Pla
文件 254 2014-06-14 09:08 Mp3Pla
文件 6781 2014-06-14 06:39 Mp3Pla
文件 16650 2014-06-14 08:06 Mp3Pla
文件 2291 2014-06-14 05:30 Mp3Pla
文件 3633 2014-06-12 07:42 Mp3Pla
目录 0 2014-06-14 06:39 Mp3Pla
文件 28672 2014-06-14 09:08 Mp3Pla
............此处省略17个文件信息
- 上一篇:vc++实现des加密和解密
- 下一篇:基于C++的USB的数据传输的上位机程序
相关资源
- MFC音乐播放器
- 音乐播放器源代码 vc++ 6.0
- 基于Directshow技术播放音频,带歌词显
- c++音乐播放器
- C语言写的音乐播放器(含源码注释)
- 新手C语言MP3播放器
- C语言写的音乐播放器含源代码
- 自己编写的音乐播放器,使用C++编写
- VC++MP3播放器课程设计实验报告
- C语言实现linux系统下的MP3播放器源代
- MFC做的MP3多功能音乐播放器
- 通过MFC的MCI实现的音乐播放器VC可视化
- MFC 音乐播放器傻 瓜教程
- MFC-MCI简单音乐播放器源码
- c++实现的简单音乐播放器
- madplay播放器.rar
- 基于MFC的音乐播放器代码
- Qt/C++模仿酷狗音乐播放器执行文件
- VC6.0直接可执行源码(音乐播放器,记
- c语言制作歌词解析源程序
- 音乐播放器的protues仿真
- 音乐播放器mfc.doc
- C++ MP3播放器
- 在VC++6.0中编写的音乐播放器源代码
- MFC简易音乐播放器源码
- vc++6.0 基于mfc音乐播放器
- MFC简单mp3播放器
- Qt实现的音乐播放器
- C语言MP3播放器源代码
- 基于51单片机的音乐播放器设计.doc
评论
共有 条评论