Ⅰ 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背景音乐问题!
一起打包