// -------------------------------------------------------------------------------------------------------------------- // // 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 VideoView.xaml // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrakeWPF.Views { using System.Windows; using HandBrakeWPF.Views; /// /// Interaction logic for VideoView /// public partial class QueueView : Window { /// /// Initializes a new instance of the class. /// public QueueView() { this.InitializeComponent(); } } }