0

只是一个快速的问题。如何在 C# 的列表框中获取下一项?只是一个简单的代码来遍历列表框中的项目:

for (int i = 0; i < listBox1.Items.Count; i++)
{
  axShockwaveFlash1.Movie = (listBox1.Items[i].ToString());
}

但问题是最后一个项目正在显示(youtube 视频)。上一个项目结束时如何自动播放下一个项目?

4

1 回答 1

0
int i = 0;

foreach (var listBoxItem in listBox1.Items)
{
    // Do stuff using "var" to represent the listbox item, I believe it comes out as a string.
    i++; // Increment i so we know what index we are at in the array.
}

抱歉,我可能误读了这个问题。您想在当前项目完成后播放下一个项目吗?如果是这样,请查看 aShockwaveFlash1 对象以尝试查找剩余时间变量或类似变量。

抱歉,如果第一篇文章浪费了您的时间。

于 2013-10-07T22:13:24.027 回答