MainWindow.xaml 1.2 KB

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