资源简介


资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.IO;

namespace AxWindowsMediaPlayer
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            this.Icon = Source.ico;
        }
        public Form1(string[] args)
        {
            InitializeComponent();
            this.Icon = Source.ico;
            WMPLib.IWMPPlaylist currentList = axWindowsMediaPlayer1.playlistCollection.newPlaylist(“默认列表“);
            for (int i = 0; i < args.Length; i++)
            {
                if (args[i].Trim() != ““)
                {
                    currentList.appendItem(axWindowsMediaPlayer1.newMedia(args[i].Trim()));
                }
            }
            axWindowsMediaPlayer1.currentPlaylist = currentList;
            axWindowsMediaPlayer1.Ctlcontrols.play();
  

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2016-01-06 13:57  AxWindowsMediaPlayer\
     目录           0  2016-01-06 13:57  AxWindowsMediaPlayer\AxWindowsMediaPlayer\
     文件         902  2016-01-06 12:59  AxWindowsMediaPlayer\AxWindowsMediaPlayer.sln
     文件       21504  2016-01-07 15:33  AxWindowsMediaPlayer\AxWindowsMediaPlayer.suo
     文件         144  2016-01-07 11:17  AxWindowsMediaPlayer\AxWindowsMediaPlayer\app.config
     文件       53760  2016-01-06 12:59  AxWindowsMediaPlayer\AxWindowsMediaPlayer\AxInterop.WMPLib.dll
     文件        4509  2016-01-07 12:57  AxWindowsMediaPlayer\AxWindowsMediaPlayer\AxWindowsMediaPlayer.csproj
     目录           0  2016-01-06 13:57  AxWindowsMediaPlayer\AxWindowsMediaPlayer\bin\
     目录           0  2016-01-07 15:33  AxWindowsMediaPlayer\AxWindowsMediaPlayer\bin\Debug\
     文件       53760  2016-01-06 12:59  AxWindowsMediaPlayer\AxWindowsMediaPlayer\bin\Debug\AxInterop.WMPLib.dll
     文件      578048  2016-01-07 15:33  AxWindowsMediaPlayer\AxWindowsMediaPlayer\bin\Debug\AxWindowsMediaPlayer.exe
     文件         144  2016-01-07 11:17  AxWindowsMediaPlayer\AxWindowsMediaPlayer\bin\Debug\AxWindowsMediaPlayer.exe.config
     文件       30208  2016-01-07 15:33  AxWindowsMediaPlayer\AxWindowsMediaPlayer\bin\Debug\AxWindowsMediaPlayer.pdb
     文件       11600  2016-01-07 15:32  AxWindowsMediaPlayer\AxWindowsMediaPlayer\bin\Debug\AxWindowsMediaPlayer.vshost.exe
     文件         144  2016-01-07 11:17  AxWindowsMediaPlayer\AxWindowsMediaPlayer\bin\Debug\AxWindowsMediaPlayer.vshost.exe.config
     文件         490  2009-08-31 00:40  AxWindowsMediaPlayer\AxWindowsMediaPlayer\bin\Debug\AxWindowsMediaPlayer.vshost.exe.manifest
     文件      331264  2016-01-06 12:59  AxWindowsMediaPlayer\AxWindowsMediaPlayer\bin\Debug\Interop.WMPLib.dll
     文件       38078  2016-01-06 13:29  AxWindowsMediaPlayer\AxWindowsMediaPlayer\bin\Debug\Media_Player_Windows_96px_1072557_easyicon.net.ico
     文件        2400  2016-01-07 14:35  AxWindowsMediaPlayer\AxWindowsMediaPlayer\Form1.cs
     文件        4334  2016-01-07 14:35  AxWindowsMediaPlayer\AxWindowsMediaPlayer\Form1.Designer.cs
     文件        6716  2016-01-07 14:35  AxWindowsMediaPlayer\AxWindowsMediaPlayer\Form1.resx
     文件      331264  2016-01-06 12:59  AxWindowsMediaPlayer\AxWindowsMediaPlayer\Interop.WMPLib.dll
     文件       38078  2016-01-06 13:30  AxWindowsMediaPlayer\AxWindowsMediaPlayer\Media_Player_Windows_96px_1072557_easyicon.net.ico
     目录           0  2016-01-06 13:57  AxWindowsMediaPlayer\AxWindowsMediaPlayer\obj\
     目录           0  2016-01-06 13:57  AxWindowsMediaPlayer\AxWindowsMediaPlayer\obj\x86\
     目录           0  2016-01-07 15:33  AxWindowsMediaPlayer\AxWindowsMediaPlayer\obj\x86\Debug\
     文件        2013  2016-01-07 15:33  AxWindowsMediaPlayer\AxWindowsMediaPlayer\obj\x86\Debug\AxWindowsMediaPlayer.csproj.FileListAbsolute.txt
     文件         975  2016-01-07 15:33  AxWindowsMediaPlayer\AxWindowsMediaPlayer\obj\x86\Debug\AxWindowsMediaPlayer.csproj.GenerateResource.Cache
     文件      578048  2016-01-07 15:33  AxWindowsMediaPlayer\AxWindowsMediaPlayer\obj\x86\Debug\AxWindowsMediaPlayer.exe
     文件         739  2016-01-07 15:33  AxWindowsMediaPlayer\AxWindowsMediaPlayer\obj\x86\Debug\AxWindowsMediaPlayer.Form1.resources
     文件       30208  2016-01-07 15:33  AxWindowsMediaPlayer\AxWindowsMediaPlayer\obj\x86\Debug\AxWindowsMediaPlayer.pdb
............此处省略13个文件信息

评论

共有 条评论