|
@@ -5,8 +5,18 @@
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
xmlns:local="clr-namespace:BuzuevaDemo"
|
|
|
mc:Ignorable="d"
|
|
|
- Title="MainWindow" Height="450" Width="800">
|
|
|
+ Title="Приятный шелест" Height="450" Width="800" Icon="/Img/Приятный шелест.ico">
|
|
|
<Grid>
|
|
|
-
|
|
|
+ <Grid.ColumnDefinitions>
|
|
|
+ <ColumnDefinition Width="100"/>
|
|
|
+ <ColumnDefinition Width="*"/>
|
|
|
+ </Grid.ColumnDefinitions>
|
|
|
+ <Grid.RowDefinitions>
|
|
|
+ <RowDefinition Height="100"/>
|
|
|
+ <RowDefinition Height="*"/>
|
|
|
+ </Grid.RowDefinitions>
|
|
|
+ <Image Source="/Img/Приятный шелест.png" Grid.Row="0" Grid.Column="0"/>
|
|
|
+ <TextBlock Text="Приятный шелест" Grid.Row="0" Grid.Column="1" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="40" FontFamily="Monotype Corsiva"/>
|
|
|
+ <Frame Grid.Row="1" Grid.ColumnSpan ="2"/>
|
|
|
</Grid>
|
|
|
</Window>
|