如何给出任何播放器的播放歌曲路径?
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);
}
}
}
我收到此错误:
你调用的对象是空的。