diff options
author | sr55 <[email protected]> | 2012-04-06 22:47:52 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2012-04-06 22:47:52 +0000 |
commit | 1908ceb760de50f2be2ea874926d9c7a0c28c9f5 (patch) | |
tree | ecef7436ac005dcc3d0cd8b2bcd182af28d51878 /win/CS/HandBrakeWPF/Views/TitleSpecificView.xaml.cs | |
parent | 5c536a641808812b493d185722729ff402cbb5b7 (diff) |
WinGui: (WPF) Initial Implementation of title specific scanning.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4582 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/Views/TitleSpecificView.xaml.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/Views/TitleSpecificView.xaml.cs | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/Views/TitleSpecificView.xaml.cs b/win/CS/HandBrakeWPF/Views/TitleSpecificView.xaml.cs new file mode 100644 index 000000000..1f60792be --- /dev/null +++ b/win/CS/HandBrakeWPF/Views/TitleSpecificView.xaml.cs @@ -0,0 +1,27 @@ +// --------------------------------------------------------------------------------------------------------------------
+// <copyright file="TitleSpecificView.xaml.cs" company="HandBrake Project (http://handbrake.fr)">
+// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
+// </copyright>
+// <summary>
+// Interaction logic for TitleSpecificView.xaml
+// </summary>
+// --------------------------------------------------------------------------------------------------------------------
+
+namespace HandBrakeWPF.Views
+{
+ using System.Windows;
+
+ /// <summary>
+ /// Interaction logic for TitleSpecific.xaml
+ /// </summary>
+ public partial class TitleSpecificView : Window
+ {
+ /// <summary>
+ /// Initializes a new instance of the <see cref="TitleSpecificView"/> class.
+ /// </summary>
+ public TitleSpecificView()
+ {
+ this.InitializeComponent();
+ }
+ }
+}
|