资源简介
通过MFC的MCI实现的音乐播放器(VC可视化),实现了播放、暂停、停止、上一曲、下一曲、快进快退、音量调节、播放进度调节、播放列表等,不过代码中还有些不完善,仅供参考。
代码片段和文件信息
// MCIPlayer1.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “MCIPlayer1.h“
#include “MCIPlayer1Dlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CMCIPlayer1App
BEGIN_MESSAGE_MAP(CMCIPlayer1App CWinApp)
//{{AFX_MSG_MAP(CMCIPlayer1App)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CMCIPlayer1App construction
CMCIPlayer1App::CMCIPlayer1App()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CMCIPlayer1App object
CMCIPlayer1App theApp;
/////////////////////////////////////////////////////////////////////////////
// CMCIPlayer1App initialization
BOOL CMCIPlayer1App::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
CMCIPlayer1Dlg 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 2013-06-27 18:11 MCIPla
目录 0 2013-06-27 18:11 MCIPla
文件 9912376 2012-05-25 02:19 MCIPla
文件 281056 2012-05-25 02:19 MCIPla
文件 14984 2012-05-24 22:25 MCIPla
文件 5893968 2012-05-24 22:12 MCIPla
文件 443392 2012-05-25 02:19 MCIPla
文件 8154524 2012-05-25 00:32 MCIPla
文件 66808 2012-05-25 02:19 MCIPla
文件 12310 2012-05-25 02:19 MCIPla
文件 122343 2012-05-24 22:12 MCIPla
文件 214016 2012-06-20 16:45 MCIPla
文件 389120 2012-05-25 02:19 MCIPla
文件 8175788 2012-08-30 11:46 MCIPla
文件 1819 2012-08-30 11:49 MCIPla
文件 2119 2012-05-17 12:57 MCIPla
文件 5033 2012-05-23 23:55 MCIPla
文件 528 2012-05-17 12:57 MCIPla
文件 1368 2012-05-17 12:57 MCIPla
文件 123904 2012-08-30 11:49 MCIPla
文件 55808 2012-08-30 11:49 MCIPla
文件 1236 2012-05-25 02:19 MCIPla
文件 7288 2012-05-25 00:32 MCIPla
文件 23899 2012-05-25 02:19 MCIPla
文件 2348 2012-05-24 22:25 MCIPla
文件 3651 2012-05-17 12:57 MCIPla
目录 0 2013-06-27 18:11 MCIPla
文件 1828 2012-05-24 23:41 MCIPla
文件 6912054 2012-05-23 22:34 MCIPla
文件 7358 2012-05-23 23:11 MCIPla
文件 154422 2012-05-23 23:41 MCIPla
............此处省略14个文件信息
- 上一篇:零基础学C++第3版 (零基础学编程).pdf
- 下一篇:电子词典代码(c语言)
相关资源
- mfc socket编程实现聊天与文件传输vs2
- MFC socket编程 简易聊天工具及文件
- MFC图像处理
- MFC十大经典游戏代码
- VS2010 C++ MFC 登陆界面设计
- 数字图像处理mfc
- mfc实现滑动窗口的简单模拟
- OBJ 模型文件读取显示 基于OpenGL MFC界
- 基于vs 2010 mfc实现对excel数据的读取,
- MFC动态加载和静态加载bmp类型图片
- 扫雷小游戏 完整源码
- 指针式仪表识别(MFC)
- 高斯投影正反算MFC
- 白塞尔大地主题解算MFC
- 基于MFC的OpenCV图像显示并标记ROI
- CEF:MFC 对话框 DemoVS2013
- MFC 音乐播放器傻 瓜教程
- MFC聊天室与文件传输
- MFC多语言界面切换
- 牛哥推荐很好的CMFCOutlookBar
- MSDN中文版下载261719
- MFC写的QQ应用程序
- 进程/作业调度:时间片轮转调度算法
- MFC窗口打开ppt,可通过UDP控制。
- MFC教程.zip
- MFC课程设计:职工信息管理系统
- OpenCV和MFC的+界面程序+各种图像处理操
- 深入浅出mfc侯捷 简体中文版
-
MFC Media pla
yer控件制作的播放器 - MFC TAB control
评论
共有 条评论