【WinForm】WinForm实现音乐播放器

文章目录

  • 前言
  • 一、效果
  • 二、界面设计
  • 三、代码
  • 总结

前言


一、效果

示例:pandas 是基于NumPy 的一种工具,该工具是为了解决数据分析任务而创建的。
【WinForm】WinForm实现音乐播放器_第1张图片

二、界面设计

注意要调用一个音频库文件:
【WinForm】WinForm实现音乐播放器_第2张图片
命名空间中引用:

using WMPLib;
using System.Media;
using System.IO;
using System.Threading;

【WinForm】WinForm实现音乐播放器_第3张图片
【WinForm】WinForm实现音乐播放器_第4张图片
【WinForm】WinForm实现音乐播放器_第5张图片
【WinForm】WinForm实现音乐播放器_第6张图片

三、代码

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

using WMPLib;
using System.Media;
using System.IO;
using System.Threading;

namespace 音乐播放器
{
    public partial class Form2 : Form
    {
        public int index = 1;
        public int listIndex;
        SoundPlayer player = new SoundPlayer();
        Dictionary<string, string> dic = new Dictionary<string, string>();
        IWMPMedia media;
        public Form2()
        {
            InitializeComponent();
        }

        private void Form2_Load(object sender, EventArgs e)
        {
            
        }

        /// 
        /// 导入文件
        /// 
        private void tsmiLoading_Click(object sender, EventArgs e)
        {
            string fileName, fileExtension, fileSize, temp;
            FileInfo fi = null;
            ListViewItem lvi = null;

            openFileDialog1.Multiselect = true;
            openFileDialog1.Filter = "mp3文件(*.mp3)|*.mp3|wav文件(*.wav)|*.wav|wma文件(*.wma)|*.wma";
            if (openFileDialog1.ShowDialog() == DialogResult.OK)
            {
                foreach (string filePath in openFileDialog1.FileNames)
                {
                    fi = new FileInfo(filePath);
                    temp = filePath.Remove(filePath.LastIndexOf('.'));
                    fileName = temp.Remove(0, temp.LastIndexOf('\\') + 1);
                    fileExtension = filePath.Remove(0, filePath.LastIndexOf('.'));
                    fileSize = (fi.Length / 1024).ToString() + "KB";

                    lvi = new ListViewItem();
                    lvi.Text = index++.ToString();
                    lvi.SubItems.AddRange(new string[] { fileName, fileExtension, fileSize, filePath });

                    if (lvDetail.Items.Count > 0)
                    {
                        if (!dic.ContainsKey(filePath))
                        {
                            lvDetail.Items.Add(lvi);
                            dic.Add(filePath, fileName);
                            //添加到播放列表
                            media = wmp.newMedia(filePath);
                            wmp.currentPlaylist.insertItem(listIndex++, media);
                        }
                        else
                        {
                            index--;
                            MessageBox.Show("文件已存在!");
                        }
                    }
                    else
                    {
                        lvDetail.Items.Add(lvi);
                        dic.Add(filePath, fileName);
                        //添加到播放列表
                        media = wmp.newMedia(filePath);
                        wmp.currentPlaylist.insertItem(listIndex++, media);
                    }
                }
            }
        }

        /// 
        /// 清除列表
        /// 
        private void tsmiClear_Click(object sender, EventArgs e)
        {
            lvDetail.Items.Clear();
        }

        /// 
        /// 播放
        /// 
        private void tsmiPlayer_Click(object sender, EventArgs e)
        {
            wmp.Ctlcontrols.play();
        }

        /// 
        /// 暂停
        /// 
        private void tsmiWaiting_Click(object sender, EventArgs e)
        {
            wmp.Ctlcontrols.pause();
        }

        /// 
        /// 停止
        /// 
        private void tsmiStop_Click(object sender, EventArgs e)
        {
            wmp.Ctlcontrols.stop();
        }

        /// 
        /// 退出
        /// 
        private void tsmiExit_Click(object sender, EventArgs e)
        {
            Application.Exit();
        }

        /// 
        /// 双击某项播放
        /// 
        private void lvDetail_DoubleClick(object sender, EventArgs e)
        {
            if (lvDetail.SelectedItems.Count > 0)
            {
                wmp.currentMedia = wmp.currentPlaylist.Item[int.Parse(lvDetail.SelectedItems[0].Text) - 1];
            }
        }
    }
}


总结

你可能感兴趣的:(#,WinForm案例,winform)