summaryrefslogtreecommitdiffstats
path: root/win/C#/HandBrakeWPF/Views/MainView.xaml.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2011-01-21 21:51:39 +0000
committersr55 <[email protected]>2011-01-21 21:51:39 +0000
commit5daa72facc91fad3d43ae16d151d737eca3faadb (patch)
treebc2c088b12aca3f634db88c11dff28a3eaf8b49e /win/C#/HandBrakeWPF/Views/MainView.xaml.cs
parent0f591a4c954dde1ed4acd5f4baea3117e3c79e29 (diff)
WinGui:
- Add initial WPF project. (Uses MVVM, Caliburn 1.1) This may one day replace the WinForms code. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3762 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/HandBrakeWPF/Views/MainView.xaml.cs')
-rw-r--r--win/C#/HandBrakeWPF/Views/MainView.xaml.cs23
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();
+ }
+ }
+}