Ⅰ C#背景音樂
<bgsound src="c:\a.mp3" />
Ⅱ winform中如何給窗體添加背景音樂最好是MP3格式的
vs2005工具箱右擊》添加組件》com組件》把mediaplayer添加進去。你會發現你的工具箱多了一個控制項—微軟的播放器。直接拖到窗體上,指定文件的路徑,就可以播放背景樂了
Ⅲ C#中怎麼設置窗體的背景音樂
是的,你引用下Windows Media Player 設置下播放文件的路徑
Ⅳ c#窗體的背景音樂
你把文件放到debug那個路徑里。
然後用Application.StartupPath
Ⅳ winform 怎麼插入背景音樂
#region 播放聲音
public static uint SND_ASYNC = 0x0001; // play asynchronously
public static uint SND_FILENAME = 0x00020000; // name is file name
[DllImport("winmm.dll")]
public static extern uint mciSendString(string lpstrCommand,
string lpstrReturnString, uint uReturnLength, uint hWndCallback);
public void PlayMusic()
{
mciSendString(@"open ""music.mp3"" alias temp_alias",
null, 0, 0);
mciSendString("play temp_alias repeat", null, 0, 0);
}
#endregion
Ⅵ VS 2013 C#winform 怎麼導入背景音樂
可以添加afxmediaplayer控制項,然後把該控制項的visible屬性設置為false實現隱藏,並在winform的load事件中添加要播放的背景音樂。版在afxmediaplayer控制項屬權性欄中把AutoStart設置成為true(其實默認是true),只要文件路徑設置正確,則文件將會自動播放。設置路徑的代碼為:
this.axMediaPlayer1.URL= musicpath;//其中musicpath為背景音樂的路徑
Ⅶ c#中怎樣插入背景音樂
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace Example
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
//為應用程序添加背景音樂
private void Form1_Load(object sender, EventArgs e)
{
try
{
//System.Media.SoundPlayer MyPlayer = new System.Media.SoundPlayer();
//MyPlayer.SoundLocation = "TestSnd.wav";
//MyPlayer.Load();
//MyPlayer.PlayLooping();
Microsoft.VisualBasic.Devices.Computer My = new Microsoft.VisualBasic.Devices.Computer();
My.Audio.Play("TestSnd.wav", Microsoft.VisualBasic.AudioPlayMode.BackgroundLoop);
}
catch (Exception MyEx)
{
MessageBox.Show(MyEx.Message, "信息提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
}
}
}
這是主程序代碼,我有整個項目。要的話回來發給你。
Ⅷ 在C#中怎樣編播放背景音樂
winform中:
System.Media.SoundPlayer s = new System.Media.SoundPlayer(path);
s.Play();
只能播放聲音文件
asp.net:
<object classid='clsid:F3D0D36F-23F8-4682-A195-74C92B03D4AF' width='600' height='480' id='QvodPlayer' name='QvodPlayer' onError=if(window.confirm('請您先安裝xxxx軟體,然後刷新本頁才可以正常播放.')){window.open(' http://www.qvod.com/download.htm')}else{self.location='http://www.qvod.com/'}><PARAM NAME='URL' VALUE=' http://down.ep8.net/2007/10/30/20100719082.torrent'></object>
value是要播放文件的路徑!
Ⅸ 急急急…………C# winform添加背景音樂…………
先加入using System.Media;命名空間,然後在窗體的初始化Load載入事件中寫如下代碼:
SoundPlayer sp = new SoundPlayer("音樂文件路徑");//必須是內帶.wav擴展名的音頻文件
sp.PlayLooping();//循環容播放
備註:音樂文件路徑一般放在項目中的Bin目錄下,就可以直接指定音樂文件名稱!謝謝採納!!
Ⅹ c#winform背景音樂問題!
一起打包