blob: 438192ea695267af588111f659b562b910d1b75e (
plain)
1
2
3
4
5
6
7
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>
|