MainWindow.xaml 1.4 KB

1234567891011121314151617181920212223242526
  1. <Window x:Class="Nastya.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:Nastya"
  7. mc:Ignorable="d"
  8. Title="Автосервис Подай на 16" Height="450" Width="800">
  9. <Grid>
  10. <Grid.ColumnDefinitions>
  11. <ColumnDefinition/>
  12. </Grid.ColumnDefinitions>
  13. <Grid.RowDefinitions>
  14. <RowDefinition Height="75"/>
  15. <RowDefinition Height="*"/>
  16. <RowDefinition Height="30"/>
  17. </Grid.RowDefinitions>
  18. <Grid Background="#AFDAFC" Height="75" VerticalAlignment="Center"/>
  19. <Grid Grid.Row="2" Background="#AFDAFC" Margin="0,0,0,-14"/>
  20. <Image Source="Assets/service_logo.png" Width="100" HorizontalAlignment="Left" />
  21. <Button Content="Назад" HorizontalAlignment="Left" Name="BtnBack" Click="BtnBack_Click" Background="#E4717A" Margin="682,10,0,10" Width="108" FontSize="23"/>
  22. <TextBlock HorizontalAlignment="Center" FontSize="23" Text="Автосервис" Margin="0,10,0,14" Width="124" />
  23. <Frame x:Name="FrameMain" NavigationUIVisibility="Hidden" Grid.Row="1" />
  24. </Grid>
  25. </Window>