1234567891011121314151617181920212223242526 |
- <Window x:Class="Nastya.MainWindow"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:local="clr-namespace:Nastya"
- mc:Ignorable="d"
- Title="Автосервис Подай на 16" Height="450" Width="800">
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition/>
- </Grid.ColumnDefinitions>
- <Grid.RowDefinitions>
- <RowDefinition Height="75"/>
- <RowDefinition Height="*"/>
- <RowDefinition Height="30"/>
- </Grid.RowDefinitions>
- <Grid Background="#AFDAFC" Height="75" VerticalAlignment="Center"/>
- <Grid Grid.Row="2" Background="#AFDAFC" Margin="0,0,0,-14"/>
- <Image Source="Assets/service_logo.png" Width="100" HorizontalAlignment="Left" />
- <Button Content="Назад" HorizontalAlignment="Left" Name="BtnBack" Click="BtnBack_Click" Background="#E4717A" Margin="682,10,0,10" Width="108" FontSize="23"/>
- <TextBlock HorizontalAlignment="Center" FontSize="23" Text="Автосервис" Margin="0,10,0,14" Width="124" />
- <Frame x:Name="FrameMain" NavigationUIVisibility="Hidden" Grid.Row="1" />
- </Grid>
- </Window>
|