1 // --------------------------------------------------------------------------------------------------------------------
2 // <copyright file="ChaptersView.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 ChaptersView.xaml
7 // </summary>
8 // --------------------------------------------------------------------------------------------------------------------
9 
10 namespace HandBrakeWPF.Views
11 {
12     using System.Windows.Controls;
13 
14     /// <summary>
15     /// Interaction logic for ChaptersView.xaml
16     /// </summary>
17     public partial class ChaptersView : UserControl
18     {
19         /// <summary>
20         /// Initializes a new instance of the <see cref="ChaptersView"/> class.
21         /// </summary>
ChaptersView()22         public ChaptersView()
23         {
24             InitializeComponent();
25         }
26     }
27 }
28