1 // --------------------------------------------------------------------------------------------------------------------
2 // <copyright file="VideoView.xaml.cs" company="HandBrake Project (http://handbrake.fr)">
3 //   This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
4 // </copyright>
5 // <summary>
6 //   Interaction logic for VideoView.xaml
7 // </summary>
8 // --------------------------------------------------------------------------------------------------------------------
9 
10 namespace HandBrakeWPF.Views
11 {
12     using System.Windows.Controls;
13 
14     /// <summary>
15     /// Interaction logic for VideoView.xaml
16     /// </summary>
17     public partial class VideoView : UserControl
18     {
19         /// <summary>
20         /// Initializes a new instance of the <see cref="VideoView"/> class.
21         /// </summary>
VideoView()22         public VideoView()
23         {
24             InitializeComponent();
25         }
26     }
27 }
28