diff options
Diffstat (limited to 'win/C#/HandBrakeWPF/Views/MainView.xaml')
-rw-r--r-- | win/C#/HandBrakeWPF/Views/MainView.xaml | 8 |
1 files changed, 8 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>
|