如何在c#windows窗体中播放mp3文件visual studio 2013 windows8

时间:2016-12-28 15:17:09

标签: c# mp3

我想在我的项目中播放一个(“Myfile.mp3)”文件,我将Windows媒体播放器组件添加到我的项目中并使用此代码但不起作用!!?请帮忙吗?

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output method="text"/>
  <xsl:template match="RESULT/Response/StatusReport/text()">
    <xsl:copy/>
  </xsl:template>
</xsl:stylesheet>

1 个答案:

答案 0 :(得分:0)

这段代码必须完美运行,因为我测试过它:

WMPLib.WindowsMediaPlayer wplayer = new WMPLib.WindowsMediaPlayer();

wplayer.URL = "My MP3 file.mp3";
wplayer.controls.play();