Title="Главная страница" MaxHeight="600" MaxWidth="850" MinHeight="350" MinWidth="450" Icon="Assets\Image\Icon\icon.ico">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="50" ></RowDefinition>
<RowDefinition Height="*"></RowDefinition>
<RowDefinition Height="50"></RowDefinition>
</Grid.RowDefinitions>
<Rectangle Grid.Row="0" Fill="{StaticResource ThirdColor}"></Rectangle>
<Rectangle Grid.Row="2" Fill="{StaticResource SeconColor}"></Rectangle>
<StackPanel HorizontalAlignment="Left">
<Image Grid.Row="0" Source="Assets\Image\Icon\logo.png" Height="50"></Image>
</StackPanel>
<StackPanel VerticalAlignment="Center" Orientation="Horizontal" HorizontalAlignment="Center">
<TextBlock Text="{Binding ElementName=FrameShopPage,Path=Content.Title}" Style="{StaticResource Zaglav}"></TextBlock>
</StackPanel>
<StackPanel HorizontalAlignment="Right" VerticalAlignment="Center" Orientation="Horizontal">
<TextBlock x:Name="UserSurnameName" Style="{StaticResource StyleTextBlock}"></TextBlock>
<Button Content="Назад"></Button>
</StackPanel>
<Frame Grid.Row="1" NavigationUIVisibility="Hidden" Name="FrameShopPage" Navigated="FrameShopPage_Navigated"></Frame>
</Grid>