MainWindow.xaml 1.1 KB

1234567891011121314151617181920
  1. <Window x:Class="Golyshev43p180322.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:Golyshev43p180322"
  7. mc:Ignorable="d"
  8. Title="Приятный шелест" Height="720" Width="1280" MinHeight="450" MinWidth="800" Icon="ico.ico">
  9. <Grid>
  10. <Grid.RowDefinitions>
  11. <RowDefinition></RowDefinition>
  12. <RowDefinition Height="6*"></RowDefinition>
  13. </Grid.RowDefinitions>
  14. <StackPanel Grid.Row="0" Orientation="Horizontal" HorizontalAlignment="Center">
  15. <Image Source="logo.png" Width="50" Height="50" Margin="0,0,5,0" ></Image>
  16. <TextBlock VerticalAlignment="Center" FontSize="48">Приятный шелест</TextBlock>
  17. </StackPanel>
  18. <Frame Grid.Row="1" Name="MainFrame" NavigationUIVisibility="Hidden" ></Frame>
  19. </Grid>
  20. </Window>