1234567891011121314151617181920212223 |
- <Window x:Class="Practic.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:Practic"
- mc:Ignorable="d"
- Title="Подай на 16" Height="450" Width="800">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="75"/>
- <RowDefinition Height="*"/>
- <RowDefinition Height="30"/>
- </Grid.RowDefinitions>
- <Grid Grid.Row="0" Background="#FFDEAD"></Grid>
- <Grid Grid.Row="2" Background="#FFDEAD"></Grid>
- <Image Source="/Assets/service_logo.png" Width="100" HorizontalAlignment="Left"></Image>
- <TextBlock Text="{Binding ElementName=FrameMain, Path=Content.Title}"></TextBlock>
- <TextBlock Height="50" HorizontalAlignment="Center" FontSize="30" Text="Услуги автосервиса"></TextBlock>
- <Frame x:Name="FrameMain" NavigationUIVisibility="Hidden" Grid.Row="1"></Frame>
- <Button Content="Назад" HorizontalAlignment="Right" Name="BtnBack" Click="BtnBack_Click" Margin="643,22,0,21" Width="147" Height="NaN" Background="Orange" FontSize="20"></Button>
- </Grid>
- </Window>
|