MainWindow.xaml 1.4 KB

12345678910111213141516171819202122232425
  1. <Window x:Class="Praktika13_Chistyakov.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:Praktika13_Chistyakov"
  7. mc:Ignorable="d"
  8. Title="MainWindow" Height="450" Width="800">
  9. <Grid HorizontalAlignment="Left" Width="792">
  10. <Grid.RowDefinitions>
  11. <RowDefinition Height="186"/>
  12. <RowDefinition/>
  13. <RowDefinition Height="93"/>
  14. </Grid.RowDefinitions>
  15. <Grid.ColumnDefinitions>
  16. <ColumnDefinition Width="*"/>
  17. <ColumnDefinition Width="295"/>
  18. <ColumnDefinition Width="*"/>
  19. </Grid.ColumnDefinitions>
  20. <Rectangle Fill="#FFF4F4F5" HorizontalAlignment="Left" Height="93" Stroke="Black" VerticalAlignment="Top" Width="792" Grid.ColumnSpan="3" Grid.Row="2" StrokeThickness="0"/>
  21. <Button Content="Назад" HorizontalAlignment="Left" Margin="60,41,0,0" VerticalAlignment="Top" Width="115" Height="32"/>
  22. <Frame x:Name="MainFrame" Source="Pages/AuthPage.xaml" HorizontalAlignment="Left" Height="307" VerticalAlignment="Top" Width="736" Grid.ColumnSpan="3" Margin="22,88,0,0" Grid.RowSpan="3"/>
  23. </Grid>
  24. </Window>