MainWindow.xaml 1015 B

1234567891011121314151617181920212223
  1. <Window x:Class="VorobiovExam01.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:VorobiovExam01"
  7. mc:Ignorable="d"
  8. Title="Главная страница" Height="650" Width="1300">
  9. <Grid>
  10. <Grid.RowDefinitions>
  11. <RowDefinition Height="47*"/>
  12. <RowDefinition Height="163*"/>
  13. </Grid.RowDefinitions>
  14. <Grid.ColumnDefinitions>
  15. <ColumnDefinition/>
  16. </Grid.ColumnDefinitions>
  17. <TextBlock Text="Книжный магазин" Grid.Row="0" FontSize ="50" Grid.Column="0" Margin="0,0,357.6,481" Grid.RowSpan="2" />
  18. <Frame x:Name="FrameMain" NavigationUIVisibility="Hidden" Margin="0,138,-0.4,0" Grid.RowSpan="2"/>
  19. </Grid>
  20. </Window>