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.
我在我们的内部构建中使用了 Silverlight 播放器,我们面临的一个问题是视频一结束就会自动重播。
有谁知道修复?
您可以尝试连接 MediaEnded 事件并在视频结束时停止视频。
private void player_MediaEnded(object sender, RoutedEventArgs e) { player.Stop(); }