1
0

MainWindow.xaml 1.4 KB

123456789101112131415161718192021222324252627
  1. <Window x:Class="AutoServiceVika.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:AutoServiceVika"
  7. mc:Ignorable="d"
  8. Title="Подай на 16" Icon="/Image/service_logo.png" Height="500" Width="1161" ResizeMode="NoResize" WindowStartupLocation="CenterScreen">
  9. <Grid>
  10. <Grid.RowDefinitions>
  11. <RowDefinition Height="75"/>
  12. <RowDefinition Height="69*"/>
  13. <RowDefinition Height="30"/>
  14. </Grid.RowDefinitions>
  15. <Grid Background="#FFFFE1">
  16. <Label Content="Услуги автосервиса" FontSize="30" HorizontalAlignment="Center" VerticalAlignment="Center" FontWeight="Bold"/>
  17. <Image Source="/Image/service_logo.png" Margin="5" VerticalAlignment="Center" HorizontalAlignment="Left"/>
  18. <Button Background="Orange" FontSize="20" Foreground="#FFFFE1" Click="btnGoBack_Click" Width="100" HorizontalAlignment="Right" Margin="5" Content="Назад" />
  19. </Grid>
  20. <Grid Grid.Row="2" Background="#FFFFE1">
  21. </Grid>
  22. <Grid Grid.Row="1">
  23. <Frame x:Name="MainFrame" NavigationUIVisibility="Hidden"/>
  24. </Grid>
  25. </Grid>
  26. </Window>