• 大小: 9.29MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-10-08
  • 语言: C#
  • 标签: C#  视频  播放器  

资源简介

这是一个C#写的音视频播放器的源码,需要的朋友下载。

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace MP4
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        string playpath = null;

        private void Form1_Load(object sender EventArgs e)
        {
            this.skinEngine1.SkinFile = “Page.ssk“;
            
        }

      
        //退出
        private void 退出ToolStripMenuItem_Click(object sender EventArgs e)
        {
            this.Close();
        }
        //打开文件
        private void name_Click(object sender EventArgs e)
        {
            using (OpenFileDialog fileDialog = new OpenFileDialog())
            {
                fileDialog.Filter = “视频文件(*.avi;*.wmv)|*.avi;*.mp4|(All file(*.*)|*.*“;
                if (fileDialog.ShowDialog() == DialogResult.OK)
                {

                    playpath = fileDialog.FileName;

                }
                else
                {
                    return;
                }
            }
            axWindowsMediaPlayer1.URL = playpath;

        }

    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2017-12-01 16:16  MP4\
     目录           0  2017-12-02 15:43  MP4\MP4\
     文件       16958  2017-09-14 14:04  MP4\MP4\128.ico
     文件         167  2017-12-01 16:48  MP4\MP4\App.config
     文件        3950  2017-12-02 15:43  MP4\MP4\Form1.Designer.cs
     文件        1336  2017-12-02 15:43  MP4\MP4\Form1.cs
     文件        6712  2017-12-02 15:43  MP4\MP4\Form1.resx
     文件        6167  2017-12-01 17:15  MP4\MP4\MP4.csproj
     文件         683  2017-09-14 15:09  MP4\MP4\MP4.csproj.user
     文件         515  2017-12-01 16:47  MP4\MP4\Program.cs
     目录           0  2017-12-01 16:16  MP4\MP4\Properties\
     文件        1365  2017-09-14 14:02  MP4\MP4\Properties\AssemblyInfo.cs
     文件        2846  2017-12-01 16:48  MP4\MP4\Properties\Resources.Designer.cs
     文件        5612  2017-09-14 13:29  MP4\MP4\Properties\Resources.resx
     文件        1103  2017-12-01 16:48  MP4\MP4\Properties\Settings.Designer.cs
     文件         249  2017-09-14 13:29  MP4\MP4\Properties\Settings.settings
     目录           0  2017-12-01 16:16  MP4\MP4\bin\
     目录           0  2017-12-01 16:16  MP4\MP4\bin\Debug\
     文件       53760  2017-09-14 15:16  MP4\MP4\bin\Debug\AxInterop.WMPLib.dll
     文件      331264  2017-12-01 16:47  MP4\MP4\bin\Debug\Interop.WMPLib.dll
     文件      536576  2016-12-10 12:10  MP4\MP4\bin\Debug\IrisSkin2.dll
     文件         187  2017-09-14 13:29  MP4\MP4\bin\Debug\MP4.vshost.exe.config
     文件       15156  2017-01-10 05:09  MP4\MP4\bin\Debug\MacOS.ssk
     文件        9218  2015-08-28 16:39  MP4\MP4\bin\Debug\Page.ssk
     文件       27136  2017-12-02 15:43  MP4\MP4\bin\Debug\视频播放器.exe
     文件         167  2017-12-01 16:48  MP4\MP4\bin\Debug\视频播放器.exe.config
     文件       28160  2017-12-02 15:43  MP4\MP4\bin\Debug\视频播放器.pdb
     文件       24216  2017-12-02 15:43  MP4\MP4\bin\Debug\视频播放器.vshost.exe
     文件         167  2017-12-01 16:48  MP4\MP4\bin\Debug\视频播放器.vshost.exe.config
     目录           0  2017-12-01 16:16  MP4\MP4\bin\Release\
     文件       53760  2017-09-14 15:28  MP4\MP4\bin\Release\AxInterop.WMPLib.dll
............此处省略47个文件信息

评论

共有 条评论