MainWindow.xaml 1.4 KB

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