MainWindow.xaml 1.3 KB

12345678910111213141516171819202122232425
  1. <Window x:Class="IS32_Shafrygin_PR13.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:IS32_Shafrygin_PR13"
  7. mc:Ignorable="d"
  8. Title="MainWindow" Height="450" Width="800">
  9. <Grid>
  10. <Grid.RowDefinitions>
  11. <RowDefinition Height="44*"/>
  12. <RowDefinition Height="330"/>
  13. <RowDefinition Height="45*"/>
  14. </Grid.RowDefinitions>
  15. <Grid.ColumnDefinitions>
  16. <ColumnDefinition/>
  17. <ColumnDefinition Width="626"/>
  18. <ColumnDefinition/>
  19. </Grid.ColumnDefinitions>
  20. <Rectangle Fill="#FFF4F4F5" Grid.Row="2" Stroke="Black" Grid.ColumnSpan="3" StrokeThickness="0"/>
  21. <Button x:Name="ButtonBack" Content="Назад" Margin="4,6,0,0" HorizontalAlignment="Left" Width="74" Height="32" VerticalAlignment="Top" Click="ButtonBack_Click"/>
  22. <Frame x:Name="MainFrame" Navigated="MainFrame_OnNavigated" Source="Pages/AuthPage.xaml" Grid.Row="1" Grid.ColumnSpan="3" Height="330" VerticalAlignment="Bottom"/>
  23. </Grid>
  24. </Window>