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プレーヤーを使用しましたが、直面している問題の1つは、ビデオが終了するとすぐに自動的に再生されることです。
誰かが修正を知っていますか?
MediaEnded イベントをフックして、終了時にビデオを停止することができます。
private void player_MediaEnded(object sender, RoutedEventArgs e) { player.Stop(); }