// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // Interaction logic for SummaryView.xaml // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrakeWPF.Views { using System.Windows.Controls; using System.Windows.Input; using HandBrakeWPF.ViewModels.Interfaces; /// /// Interaction logic for SummaryView.xaml /// public partial class SummaryView : UserControl { public SummaryView() { this.InitializeComponent(); } private void PreviewImage_OnMouseWheel(object sender, MouseWheelEventArgs e) { if (e.Delta > 1) { ((ISummaryViewModel)this.DataContext).NextPreview(); } else { ((ISummaryViewModel)this.DataContext).PreviousPreview(); } } } }