资源简介
多媒体播放器的主要功能是播放MP3、WAV、AVI、DAT、RM、RMVB格式的文件,可以将单个播放文件及整个文件夹中的播放文件添加到列表中,并可以实现歌词滚动的效果(源代码)。
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Forms;//添加控件及窗体的命名空间
using System.Drawing;//添加Point的命名空间
using System.Collections;//为ArrayList添加命名空间
using System.Runtime.InteropServices;//API函数的命名空间
using System.IO;//文件操作的命名空间
//应用scripting在“添加引用”对话框中选中“COM“选项卡,然后选中Microsoft scripting Runtime,单击“确定”按钮
//应用Shell32在“添加引用”对话框中选中“COM“选项卡,然后选中Microsoft Shell Controls And Automation,单击“确定”按钮
namespace PlayApparatus
{
class FrmClass
{
#region 记录窗体的实例化信息-公共变量
public static Form F_List = new Form();
public static Form F_Libretto = new Form();
public static Form F_Screen = new Form();
public static Form F_MPlay = new Form();
#endregion
#region 磁性窗体-公共变量
//记录窗体的隐藏与显示
public static bool Example_ListShow = false;
public static bool Example_LibrettoShow = false;
public static bool Example_ScreenShow = false;
//记录鼠标的当前位置
public static Point CPoint; //添加命名空间using System.Drawing;
public static Point FrmPoint;
public static int Example_FSpace = 10;//设置窗体间的距离
//Frm_Play窗体的位置及大小
public static int Example_Play_Top = 0;
public static int Example_Play_Left = 0;
public static int Example_Play_Width = 0;
public static int Example_Play_Height = 0;
public static bool Example_Assistant_AdhereTo = false;//辅助窗体是否磁性在一起
//Frm_ListBos窗体的位置及大小
public static int Example_List_Top = 0;
public static int Example_List_Left = 0;
public static int Example_List_Width = 0;
public static int Example_List_Height = 0;
public static bool Example_List_AdhereTo = false;//辅助窗体是否与主窗体磁性在一起
//Frm_Libretto窗体的位置及大小
public static int Example_Libretto_Top = 0;
public static int Example_Libretto_Left = 0;
public static int Example_Libretto_Width = 0;
public static int Example_Libretto_Height = 0;
public static bool Example_Libretto_AdhereTo = false;//辅助窗体是否与主窗体磁性在一起
//窗体之间的距离差
public static int Example_List_space_Top = 0;
public static int Example_List_space_Left = 0;
public static int Example_Libretto_space_Top = 0;
public static int Example_Libretto_space_Left = 0;
#endregion
#region 视频播放-公共变量
public static bool Example_Size = false;
public static int Example_X = 0;
public static int Example_Y = 0;
public static int Example_CursotX = 0;
public static int Example_CursotY = 0;
public static int Example_Width = 0;
public static int Example_Height = 0;
public static int Example_Right = 0;
public static string Example_File_Size = ““;
public static double Example_TimeSizeD = 0;
public static string Example_TimeSizeS = ““;
public static double Example_Barframe = 0;/
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2011-04-21 23:07 PlayApparatus\
目录 0 2011-04-21 23:07 PlayApparatus\PlayApparatus\
文件 929 2010-01-28 09:28 PlayApparatus\PlayApparatus.sln
文件 53248 2011-04-21 23:22 PlayApparatus\PlayApparatus.suo
目录 0 2011-04-21 23:07 PlayApparatus\PlayApparatus\bin\
目录 0 2011-04-21 23:07 PlayApparatus\PlayApparatus\bin\Debug\
文件 53248 2008-09-05 16:19 PlayApparatus\PlayApparatus\bin\Debug\AxInterop.WMPLib.dll
文件 16384 2008-07-18 11:51 PlayApparatus\PlayApparatus\bin\Debug\FrmClassDepot.dll
文件 32768 2011-04-21 22:15 PlayApparatus\PlayApparatus\bin\Debug\Interop.sc
文件 53248 2011-04-21 22:15 PlayApparatus\PlayApparatus\bin\Debug\Interop.Shell32.dll
文件 331776 2011-04-21 22:15 PlayApparatus\PlayApparatus\bin\Debug\Interop.WMPLib.dll
文件 310272 2011-04-21 23:11 PlayApparatus\PlayApparatus\bin\Debug\PlayApparatus.exe
文件 157184 2011-04-21 23:11 PlayApparatus\PlayApparatus\bin\Debug\PlayApparatus.pdb
文件 14328 2011-04-21 23:16 PlayApparatus\PlayApparatus\bin\Debug\PlayApparatus.vshost.exe
文件 490 2007-07-21 01:33 PlayApparatus\PlayApparatus\bin\Debug\PlayApparatus.vshost.exe.manifest
文件 973 2011-04-21 22:18 PlayApparatus\PlayApparatus\bin\Debug\默认.m3u
文件 70939 2011-04-21 22:24 PlayApparatus\PlayApparatus\FrmClass.cs
文件 8338 2008-09-04 09:52 PlayApparatus\PlayApparatus\Frm_Libretto.cs
文件 17066 2008-09-04 09:51 PlayApparatus\PlayApparatus\Frm_Libretto.Designer.cs
文件 16687 2008-09-04 09:51 PlayApparatus\PlayApparatus\Frm_Libretto.resx
文件 25559 2008-09-16 11:22 PlayApparatus\PlayApparatus\Frm_ListBox.cs
文件 31562 2008-09-12 09:44 PlayApparatus\PlayApparatus\Frm_ListBox.Designer.cs
文件 23350 2008-09-12 09:44 PlayApparatus\PlayApparatus\Frm_ListBox.resx
文件 37348 2011-04-21 23:11 PlayApparatus\PlayApparatus\Frm_Play.cs
文件 32140 2011-04-21 23:11 PlayApparatus\PlayApparatus\Frm_Play.Designer.cs
文件 104605 2011-04-21 23:11 PlayApparatus\PlayApparatus\Frm_Play.resx
文件 7529 2008-09-16 08:55 PlayApparatus\PlayApparatus\Frm_Screen.cs
文件 16873 2008-09-16 08:55 PlayApparatus\PlayApparatus\Frm_Screen.Designer.cs
文件 59985 2008-09-16 08:55 PlayApparatus\PlayApparatus\Frm_Screen.resx
目录 0 2011-04-21 23:07 PlayApparatus\PlayApparatus\Image\
文件 3513 2008-08-19 19:08 PlayApparatus\PlayApparatus\Image\EQ.png
............此处省略92个文件信息
- 上一篇:C#账户管理系统源码
- 下一篇:书店管理系统附带数据库
相关资源
- 书店管理系统附带数据库
- C#账户管理系统源码
- c# 读取netcdf
- 毕业设计项目---拍拍网
- 软件工程及文档附带安装程序,及各
- C#数据库系统开发案例精选光盘内容
- C#数据库系统开发案例精选(书后光盘
- 鹏哥特色教程之C#入门到精通 基础篇
- C#编程系列:文档管理系统
- 协会管理系统V1.0 源代码
- 金旭亮《C#面向对象程序设计》教案
- C#版2048小游戏源码
- C#三层架构酒店管理系统
- 校园公共自行车租凭系统的设计与实
- C#源代码 库存管理系统
- c#基于emgu进行图像配准及拼接
- C# 开发modbus合集
- C#串口调试工具源码
- C#课程设计一个自己做的收银系统火锅
- 远程桌面控制C#源码
- 学生信息管理 C# SQL
- winform抽奖小程序
- C#课程设计-超市管理系统
- C#编程思想(清晰版)
- C#服装销售管理系统
- C# 简易银行管理系统
- C#生成PDF 读取PDF文本内容 获取PDF内图
- C#抽奖
- C#编写的图书管理系统源代码
- RFID仓储管理系统
评论
共有 条评论