MainWindow.xaml 1.2 KB

123456789101112131415161718192021222324
  1. <Window x:Class="PleasantRustle.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:PleasantRustle"
  7. mc:Ignorable="d"
  8. Title="Приятный шелест" Width="800" FontFamily="Monotype Corsiva" MinWidth="890" MinHeight="830">
  9. <Grid>
  10. <Grid.RowDefinitions>
  11. <RowDefinition Height="100"/>
  12. <RowDefinition Height="7*"/>
  13. </Grid.RowDefinitions>
  14. <Grid.ColumnDefinitions>
  15. <ColumnDefinition Width="150"/>
  16. <ColumnDefinition Width="7*"/>
  17. </Grid.ColumnDefinitions>
  18. <Image Source="/Images/Приятный шелест.png"/>
  19. <StackPanel Grid.ColumnSpan="2" HorizontalAlignment="Center" VerticalAlignment="Center">
  20. <TextBlock Text="Приятный шелест" FontFamily="Monotype Corsiva" FontSize="35"/>
  21. </StackPanel>
  22. <Frame x:Name="frm" Grid.Row="2" NavigationUIVisibility="Hidden" Grid.ColumnSpan="2" HorizontalAlignment="Center"/>
  23. </Grid>
  24. </Window>