...C#中怎么实现弹出框播放音乐,并且实现关闭弹出框,音乐播放就关闭_百 ...
发布网友
发布时间:2022-04-30 19:53
我来回答
共3个回答
热心网友
时间:2022-04-26 13:45
在窗体放置Windows Media Player控件。注意要先引用Wmp的com组件。放置控件后,将控件的visible属性设置为 false。只要设置它的url属性为声音文件的路径就行了。
AxWindowsMediaPlayer.controls.play()开始播放。
热心网友
时间:2022-04-26 15:03
先把你的音乐放到一个层里面,然后在你弹出对话框中的JS给那个视频把它开放,再次关闭!!!
热心网友
时间:2022-04-26 16:37
编写一个弹出脚本的程序!function SetStatebar(){
if(Math.floor(document.Form1.MMPlayer1.controls.currentPosition)> 0){
positionSet=true;
iex=event.clientX;
tempx=self.layer1.style.pixelLeft;
//alert(tempx);
document.onmousemove=positionDragControl;
if (document.all){document.onmouseup=playerSetPosition;}
}
}
function positionDragControl(){
if (positionSet){
var mov = tempx+event.clientX-iex;
if ((mov> =3) && (mov <238)){
self.layer1.style.pixelLeft=mov;
//alert( "ccc ");
//if ( chkEvent != 3 ) { chkEvent++; } else { chkEvent = 0; }
} return false;
}
}
function playerSetPosition(){
if (positionSet){
positionSet=false;
document.Form1.MMPlayer1.controls.currentPosition= Math.floor(document.Form1.MMPlayer1.currentMedia.ration *((self.layer1.style.pixelLeft-4)/238));
}
}