Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个代码应该从队列中获取视频网址并在 1 结束后播放队列中的下一个视频。我只是无法让程序知道视频是否已经结束。我怎样才能做到这一点?
这就是我得到的:
{ if (songrequests.Count > 0) { var url = songrequests.Dequeue(); axShockwaveFlash1.Movie = url; } }