|
|
当前位置:首页 > > c# 播放背景音乐的三种方法 |
c# 背景音乐 方法一: 在前台页面加入: <embed src="zals.mp3" width=0 height=0 autostart=true></embed> 方法二: 在后台页面加入: public partial class _Default : System.Web.UI.Page { System.Media.SoundPlayer s1 = new System.Media.SoundPlayer();//播放器 s1.SoundLocation = "e:zhong.wav"; s1.Play(); } } 方法三: 在后台页面加入: using System.Media; protected void Page_Load(object sender, EventArgs e) { SoundPlayer simpleSound = new SoundPlayer("e:zhong.wav"); simpleSound.Play(); }
|
|