diff options
Diffstat (limited to 'win/CS/HandBrakeWPF')
-rw-r--r-- | win/CS/HandBrakeWPF/Views/MiniView.xaml.cs | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/Views/MiniView.xaml.cs b/win/CS/HandBrakeWPF/Views/MiniView.xaml.cs new file mode 100644 index 000000000..323974ca1 --- /dev/null +++ b/win/CS/HandBrakeWPF/Views/MiniView.xaml.cs @@ -0,0 +1,25 @@ +// --------------------------------------------------------------------------------------------------------------------
+// <copyright file="MiniView.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 MiniView.xaml
+// </summary>
+// --------------------------------------------------------------------------------------------------------------------
+
+namespace HandBrakeWPF.Views
+{
+ /// <summary>
+ /// Interaction logic for MiniView.xaml
+ /// </summary>
+ public partial class MiniView
+ {
+ /// <summary>
+ /// Initializes a new instance of the <see cref="MiniView"/> class.
+ /// </summary>
+ public MiniView()
+ {
+ this.InitializeComponent();
+ }
+ }
+}
|