12345678910111213141516171819202122 |
- <Window x:Class="BuzuevaDemo.MainWindow"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:local="clr-namespace:BuzuevaDemo"
- mc:Ignorable="d"
- Title="Приятный шелест" Height="500" Width="950" Icon="/Img/Приятный шелест.ico" MinHeight="500" MinWidth="950">
- <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" Name="PageChange" NavigationUIVisibility="Hidden"/>
- </Grid>
- </Window>
|