如何自动播放列表框的下一项
本文关键字:一项 何自动 播放列表 | 更新日期: 2023-09-27 17:53:27
我使用一个listBox来播放我的表单上的媒体播放器文件,我使用下面的代码在我的列表框中获取文件,因为它返回文件名,现在我能够从列表框中播放文件,现在我想要列表框中的下一个项目在时间间隔后自动播放。怎么做
this.listBox1.DisplayMember = "Name";/*to display name on listbox*/
this.listBox1.ValueMember = "FullName";/*to fetch item value on listbox*/
listBox1.DataSource = GetFolder("..''video''"); /*gets folder path*/
private static List<FileInfo> GetFolder(string folder)
{
List<FileInfo> fileList = new List<FileInfo>();
foreach (FileInfo file in new DirectoryInfo(folder)
.GetFiles("*.mpg",SearchOption.AllDirectories))
{
fileList.Add(file);
}
return fileList;
}
对于listbox,我使用以下代码
private void listBox2_SelectedIndexChanged(object sender, EventArgs e)
{
Player.URL = Convert.ToString(listBox2.SelectedItem);
}
对于listBox1,我使用代码
private void listBox1_SelectedIndexChanged(object sender, EventArgs e )
{
StreamWriter sw = new StreamWriter("..''Debug''List.txt", true);
//Player.URL = Convert.ToString(listBox1.SelectedItem);
string selectedItem = listBox1.Items[listBox1.SelectedIndex].ToString();
//listView1.Items.Add(listBox1.SelectedItem.ToString());
foreach (object o in listBox1.SelectedItems)
sw.WriteLine(DateTime.Now + " - " + o);
sw.Close();
}
然后我使用一个按钮将选定的listbox1文件传输到另一个表单的listBox2
private void button1_Click_1(object sender, EventArgs e)
{
System.Text.StringBuilder sb = new System.Text.StringBuilder();
foreach (object item in listBox1.Items)
{
sb.Append(item.ToString());
sb.Append(" ");
}
string selectedItem = listBox1.Items[listBox1.SelectedIndex].ToString();
//listBox2.Items.Add(listBox1.SelectedItem.ToString());
Form3 frm = new Form3();
foreach (int i in listBox1.SelectedIndices)
{
frm.listBox2.Items.Add(listBox1.Items[i].ToString());
frm.Show();
this.Hide();
}
}
listbox2代码如上所述
你必须拦截玩家的PlayStateChange
。一旦你得到int
的值8
,即MediaEnded
,你就可以在所需的时间间隔后播放列表中的下一个视频。
[UPDATE] -这不适用于。net 2.0,所以从答案
末尾的[EDIT]中获得Form3.cs
的正确版本这是Form3.cs
(。NET 4.5):
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using WMPLib;
namespace WindowsFormsApplication10
{
public partial class Form3 : Form
{
public Form3()
{
InitializeComponent();
this.listBox2.DisplayMember = "Name";/*to display name on listbox*/
this.listBox2.ValueMember = "FullName";/*to fetch item value on listbox*/
Player.PlayStateChange += Player_PlayStateChange;
}
async void Player_PlayStateChange(object sender, AxWMPLib._WMPOCXEvents_PlayStateChangeEvent e)
{
if ((WMPLib.WMPPlayState)e.newState == WMPLib.WMPPlayState.wmppsMediaEnded)
{
if (listBox2.SelectedIndex + 1 < listBox2.Items.Count)
{
await System.Threading.Tasks.Task.Delay(3000);
listBox2.SelectedItem = listBox2.Items[listBox2.SelectedIndex + 1];
}
}
}
private void listBox2_SelectedIndexChanged(object sender, EventArgs e)
{
Player.URL = Convert.ToString(listBox2.SelectedItem.GetType().GetProperty("FullName").GetValue(listBox2.SelectedItem)).ToString();
Player.Ctlcontrols.play();
}
}
}
这里是Form1.cs
(。NET 4.5):
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
//using System.Linq;
using System.Text;
//using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApplication10
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
this.listBox1.DisplayMember = "Name";/*to display name on listbox*/
this.listBox1.ValueMember = "FullName";/*to fetch item value on listbox*/
listBox1.DataSource = GetFolder("..''video''"); /*gets folder path*/
}
private static List<FileInfo> GetFolder(string folder)
{
List<FileInfo> fileList = new List<FileInfo>();
foreach (FileInfo file in new DirectoryInfo(folder)
.GetFiles("*.mpg", SearchOption.AllDirectories))
{
fileList.Add(file);
}
return fileList;
}
private void button1_Click(object sender, EventArgs e)
{
Form3 frm = new Form3();
frm.FormClosed += frm_FormClosed;
foreach (int i in listBox1.SelectedIndices)
{
frm.listBox2.Items.Add(new
{
Name = ((FileInfo)listBox1.Items[i]).Name,
FullName = ((FileInfo)listBox1.Items[i]).FullName
});
frm.Show();
this.Hide();
}
}
void frm_FormClosed(object sender, FormClosedEventArgs e)
{
this.Show();
}
}
}
[EDIT] -这应该适用于。net 2.0
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using WMPLib;
namespace WindowsFormsApplication10
{
public partial class Form3 : Form
{
System.Timers.Timer _timer = new System.Timers.Timer();
object _locker = new object();
public Form3()
{
InitializeComponent();
this.listBox2.DisplayMember = "Name";/*to display name on listbox*/
this.listBox2.ValueMember = "FullName";/*to fetch item value on listbox*/
Player.PlayStateChange += Player_PlayStateChange;
_timer.Elapsed += _timer_Elapsed;
_timer.Interval = 3000;
}
void _timer_Elapsed(object sender, System.Timers.ElapsedEventArgs e)
{
_timer.Stop();
lock (_locker)
{
this.Invoke((MethodInvoker)delegate
{
if (listBox2.SelectedIndex + 1 < listBox2.Items.Count)
{
listBox2.SelectedItem = listBox2.Items[listBox2.SelectedIndex + 1];
}
});
}
}
void Player_PlayStateChange(object sender, AxWMPLib._WMPOCXEvents_PlayStateChangeEvent e)
{
if ((WMPLib.WMPPlayState)e.newState == WMPLib.WMPPlayState.wmppsMediaEnded)
{
_timer.Start();
}
else if ((WMPLib.WMPPlayState)e.newState == WMPLib.WMPPlayState.wmppsReady)
{
Player.Ctlcontrols.play();
}
}
private void listBox2_SelectedIndexChanged(object sender, EventArgs e)
{
Player.URL = Convert.ToString(listBox2.SelectedItem.GetType().GetProperty("FullName").GetValue(listBox2.SelectedItem, null)).ToString();
}
}
}