diff options
Diffstat (limited to 'win/C#/HandBrakeWPF/Views')
-rw-r--r-- | win/C#/HandBrakeWPF/Views/MainView.xaml | 8 | ||||
-rw-r--r-- | win/C#/HandBrakeWPF/Views/MainView.xaml.cs | 23 |
2 files changed, 31 insertions, 0 deletions
diff --git a/win/C#/HandBrakeWPF/Views/MainView.xaml b/win/C#/HandBrakeWPF/Views/MainView.xaml new file mode 100644 index 000000000..438192ea6 --- /dev/null +++ b/win/C#/HandBrakeWPF/Views/MainView.xaml @@ -0,0 +1,8 @@ +<Window x:Class="HandBrakeWPF.Views.MainView"
+ xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
+ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
+ Title="{Binding Path=WindowTitle}" Height="300" Width="300">
+ <Grid>
+ <TextBlock Text="{Binding Path=WindowTitle}" />
+ </Grid>
+</Window>
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();
+ }
+ }
+}
|