0

如何给出任何播放器的播放歌曲路径?

using System;
using System.Windows.Forms;
using WMPLib;

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

        private void button1_Click(object sender, EventArgs e)
        {
            WindowsMediaPlayerClass player=new WindowsMediaPlayerClass();
            MessageBox.Show(player.currentMedia.name);

        }
    }
}

我收到此错误:

你调用的对象是空的。

4

1 回答 1

1

这是因为 currentMedia 未设置(空)。您必须先指定路径才能使用 WindowsMediaPlayerClass 进行播放。

于 2012-08-26T09:59:02.907 回答