• 大小: 0.17M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签: MP3播放器  

资源简介


资源截图

代码片段和文件信息

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

namespace MP3_Player
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        //浏览
        private void button1_Click(object sender EventArgs e)
        {
            if (openFileDialog1.ShowDialog() == DialogResult.OK)
            {
                this.listView1.Items.Clear();
                string[] FileNames = this.openFileDialog1.FileNames;
                foreach (string FileName in FileNames)
                {
                    FileInfo MyFileInfo = new FileInfo(FileName);
                    string

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      61440  2007-12-05 13:13  MP3-Player\bin\Debug\AxInterop.WMPLib.dll

     文件     274432  2012-10-16 09:40  MP3-Player\bin\Debug\Interop.WMPLib.dll

     文件      36864  2012-10-16 10:37  MP3-Player\bin\Debug\MP3-Player.exe

     文件      44544  2012-10-16 10:37  MP3-Player\bin\Debug\MP3-Player.pdb

     文件       5632  2007-12-09 22:44  MP3-Player\bin\Debug\MP3-Player.vshost.exe

     文件       7530  2012-10-16 10:37  MP3-Player\Form1.cs

     文件      16518  2012-10-16 10:37  MP3-Player\Form1.Designer.cs

     文件      14317  2012-10-16 10:37  MP3-Player\Form1.resx

     文件        537  2007-12-09 22:43  MP3-Player\Form2.cs

     文件       3606  2007-12-09 22:43  MP3-Player\Form2.Designer.cs

     文件       5814  2007-12-09 22:43  MP3-Player\Form2.resx

     文件       4178  2007-12-09 22:19  MP3-Player\MP3-Player.csproj

     文件        923  2007-12-04 23:32  MP3-Player\MP3-Player.sln

     文件      61440  2007-12-05 13:13  MP3-Player\obj\Debug\AxInterop.WMPLib.dll

     文件     274432  2012-10-16 09:40  MP3-Player\obj\Debug\Interop.WMPLib.dll

     文件        900  2012-10-16 10:37  MP3-Player\obj\Debug\MP3-Player.csproj.GenerateResource.Cache

     文件        535  2012-10-16 09:40  MP3-Player\obj\Debug\MP3-Player.csproj.ResolveComReference.cache

     文件      36864  2012-10-16 10:37  MP3-Player\obj\Debug\MP3-Player.exe

     文件      44544  2012-10-16 10:37  MP3-Player\obj\Debug\MP3-Player.pdb

     文件       5909  2012-10-16 10:37  MP3-Player\obj\Debug\MP3_Player.Form1.resources

     文件        180  2012-10-16 09:40  MP3-Player\obj\Debug\MP3_Player.Form2.resources

     文件        180  2012-10-16 09:40  MP3-Player\obj\Debug\MP3_Player.Properties.Resources.resources

     文件        506  2007-12-09 22:44  MP3-Player\obj\MP3-Player.csproj.FileList.txt

     文件       2482  2012-10-23 09:21  MP3-Player\obj\MP3-Player.csproj.FileListAbsolute.txt

     文件        469  2007-12-04 23:32  MP3-Player\Program.cs

     文件       1168  2007-12-04 23:32  MP3-Player\Properties\AssemblyInfo.cs

     文件       2875  2007-12-04 23:32  MP3-Player\Properties\Resources.Designer.cs

     文件       5350  2007-12-04 23:32  MP3-Player\Properties\Resources.resx

     文件       1094  2007-12-04 23:32  MP3-Player\Properties\Settings.Designer.cs

     文件        249  2007-12-04 23:32  MP3-Player\Properties\Settings.settings

............此处省略10个文件信息

评论

共有 条评论