using System; using System.ComponentModel; using System.Diagnostics; using System.Windows.Controls; using System.Windows.Input; using FontAwesome.WPF; using Unosquare.FFmpegMediaElement; namespace QuickLook.Plugin.VideoViewer { /// /// Interaction logic for UserControl1.xaml /// public partial class ViewerPanel : UserControl, IDisposable { private readonly ContextObject _context; public ViewerPanel(ContextObject context) { InitializeComponent(); _context = context; buttonPlayPause.MouseLeftButtonUp += TogglePlayPause; mediaElement.PropertyChanged += ChangePlayPauseButton; mediaElement.MouseLeftButtonUp += TogglePlayPause; mediaElement.MediaErrored += ShowErrorNotification; mediaElement.MediaFailed += ShowErrorNotification; } public void Dispose() { mediaElement?.Dispose(); } private void TogglePlayPause(object sender, MouseButtonEventArgs e) { if (mediaElement.IsPlaying) mediaElement.Pause(); else mediaElement.Play(); } private void ChangePlayPauseButton(object sender, PropertyChangedEventArgs e) { if (e.PropertyName != "IsPlaying" && e.PropertyName != "HasMediaEnded") return; buttonPlayPause.Icon = mediaElement.IsPlaying ? FontAwesomeIcon.PauseCircleOutline : FontAwesomeIcon.PlayCircleOutline; } [DebuggerNonUserCode] private void ShowErrorNotification(object sender, MediaErrorRoutedEventArgs e) { _context.ShowNotification("", "An error occurred while loading the video."); mediaElement.Stop(); Dispose(); throw new Exception("fallback to default viewer."); } public void LoadAndPlay(string path) { mediaElement.Source = new Uri(path); mediaElement.Play(); } ~ViewerPanel() { GC.SuppressFinalize(this); Dispose(); } } }