private System.Media.SoundPlayer sp;
public Form1()
{
InitializeComponent();
sp = new System.Media.SoundPlayer(Properties.Resources.main);
}
private void Form1_Load(object sender, EventArgs e)
{
sp.Play();
}
主要播放聲音是從資源,MP3 ......我得到以下錯誤: *爲System.Media.SoundPlayer.SoundPlayer(System.IO.Stream)的最佳重載的方法匹配「有一些無效參數C#中的背景
和
*無法從轉換的 'byte []' 到 'System.IO.Stream'
無法在player.stream行 –
處隱式地將類型'byte []'轉換爲'System.IO.Stream'非常奇怪。你的聲音文件是.wav嗎?文件位於資源的哪裏?你有沒有添加使用媒體? – FeliceM
它的MP3和我didn.t使用中添加媒體.. –