MainWindow.xaml 1.1 KB

123456789101112131415161718192021
  1. <Window x:Class="Lopushok.MainWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:Lopushok"
  7. mc:Ignorable="d"
  8. Icon="Лопушок.ico"
  9. Title="{Binding ElementName=NavFrame,Path=Content.Title}" Height="450" Width="800" Style="{StaticResource DefaultWindow}" WindowStartupLocation="CenterScreen">
  10. <Grid>
  11. <Grid.RowDefinitions>
  12. <RowDefinition Height="50"/>
  13. <RowDefinition/>
  14. </Grid.RowDefinitions>
  15. <Image Source="Лопушок.png" HorizontalAlignment="Left"></Image>
  16. <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="32">LOPUSHOK</TextBlock>
  17. <Frame Name="NavFrame" NavigationUIVisibility="Hidden" ContentRendered="NavFrame_ContentRendered" Grid.Row="1"></Frame>
  18. </Grid>
  19. </Window>