diff options
Diffstat (limited to 'win/C#/HandBrakeWPF/Views/MainView.xaml.cs')
-rw-r--r-- | win/C#/HandBrakeWPF/Views/MainView.xaml.cs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/win/C#/HandBrakeWPF/Views/MainView.xaml.cs b/win/C#/HandBrakeWPF/Views/MainView.xaml.cs new file mode 100644 index 000000000..efb3e7d6e --- /dev/null +++ b/win/C#/HandBrakeWPF/Views/MainView.xaml.cs @@ -0,0 +1,23 @@ +/* MainView.xaml.cs $
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.fr>.
+ It may be used under the terms of the GNU General Public License. */
+
+namespace HandBrakeWPF.Views
+{
+ using System.Windows;
+
+ /// <summary>
+ /// Interaction logic for MainView.xaml
+ /// </summary>
+ public partial class MainView : Window
+ {
+ /// <summary>
+ /// Initializes a new instance of the <see cref="MainView"/> class.
+ /// </summary>
+ public MainView()
+ {
+ InitializeComponent();
+ }
+ }
+}
|