MainWindow.xaml 1.3 KB

1234567891011121314151617181920
  1. <Window x:Class="Khaustov_ProbniyDE.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:Khaustov_ProbniyDE"
  7. mc:Ignorable="d"
  8. Title="Авторизация" Height="500" Width="800" WindowStartupLocation="CenterScreen">
  9. <Grid>
  10. <Grid.RowDefinitions>
  11. <RowDefinition Height="100"/>
  12. <RowDefinition Height="*"/>
  13. </Grid.RowDefinitions>
  14. <Image Source="Resources/beauty_logo.png" VerticalAlignment="Top" HorizontalAlignment="Left"></Image>
  15. <Grid Grid.Row="0" Background="#FFE1E4FF" Panel.ZIndex="-1"></Grid>
  16. <Frame NavigationUIVisibility="Hidden" Grid.Row="1" Name="MainFrame" ContentRendered="MainFrame_ContentRendered" Background="#FFFF4A6D"></Frame>
  17. <TextBlock x:Name="Header" VerticalAlignment="Center" HorizontalAlignment="Center" Text="Бровушка" FontSize="38" FontFamily="Tahoma"/>
  18. <Button Content="Назад" Grid.Row="0" HorizontalAlignment="Right" x:Name="btnBack" Click="btnBack_Click"></Button>
  19. </Grid>
  20. </Window>