停止在Windows 10 Universal App中的页面上播放所有媒体元素

时间:2015-08-07 09:34:58

标签: c# xaml windows-store-apps windows-10 uwp

我正在创建动态媒体元素以及xaml页面上的动态按钮,如下所示:

MediaElement audioElement= new MediaElement();
audioElement.Source = new Uri(ApplicationData.Current.RoamingFolder.Path + "\\"+ audioFileName, UriKind.RelativeOrAbsolute);
audioElement.AutoPlay = false;
audioElement.Volume = 1;

然后点击按钮播放音频:

 audioElement.Play();

如何停止所有以前播放的媒体元素,并且一次只播放一个音频,因为有多个媒体元素具有不同的来源。

1 个答案:

答案 0 :(得分:0)

我已经修复了这个问题,使用全局MediaElement并播放和暂停相同的媒体元素,在clik of play按钮时协助源。

希望这有帮助。

if (null != audioPlayerElement.Source)
                    {
                        audioPlayerElement.Stop();
                        FrameworkElement elem = this.ContentPanel.FindName(audioPlayerElement.Tag.ToString()) as FrameworkElement;
                        RelativePanel audioPanel = elem as RelativePanel;

                        Button playButton = (from im in audioPanel.Children.OfType<Button>() select im).FirstOrDefault();
                        playButton.Tag = "PAUSED";
                        ImageBrush backgroundImage = new ImageBrush();
                        backgroundImage.ImageSource = new BitmapImage(new Uri(@"ms-appx:///Assets/Video_Play_button.png"));
                        backgroundImage.Stretch = Stretch.None;
                        playButton.Background = backgroundImage;

                        Slider prevSlider = (from im in audioPanel.Children.OfType<Slider>() select im).FirstOrDefault();
                        prevSlider.Value = 0;
                    }

audioPlayerElement = audioElement;

再次将本地媒体元素分配给全局媒体元素。