MainWindow.xaml 1.5 KB

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