41 lines
1.6 KiB
XML
41 lines
1.6 KiB
XML
<ResourceDictionary
|
|
x:Class="AutoCat.Resources.Templates.ResourceDictStub"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:model="using:AutoCatCore.Model"
|
|
xmlns:controls="using:AutoCat.Controls">
|
|
|
|
<DataTemplate x:Key="VehicleDetailTemplate" x:DataType="model:Vehicle">
|
|
<Grid Margin="16" RowSpacing="16" ColumnSpacing="16">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="*"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*"/>
|
|
<ColumnDefinition Width="*"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<StackPanel Grid.ColumnSpan="2" Orientation="Horizontal" Spacing="8">
|
|
<Image Source="{Binding Brand.Logo}" Height="50"/>
|
|
<TextBlock Text="{Binding Brand.Name.Original}" FontSize="24" VerticalAlignment="Center"/>
|
|
</StackPanel>
|
|
|
|
<StackPanel Grid.Row="1" Grid.Column="0" Padding="8" Orientation="Vertical" Spacing="8" Background="#222">
|
|
<TextBlock FontSize="18" FontWeight="SemiBold" Text="General"/>
|
|
<Line Stroke="#444" StrokeThickness="1" Stretch="Fill" X1="0" X2="1"/>
|
|
<controls:TextCell Title="Year" Value="qwe"/>
|
|
<controls:TextCell Title="Color" Value="{Binding Brand.Name.Original}"/>
|
|
</StackPanel>
|
|
|
|
<StackPanel Grid.Row="1" Grid.Column="1" Orientation="Vertical" Spacing="8" Background="#222">
|
|
<TextBlock FontSize="24" Text="Numbers"/>
|
|
</StackPanel>
|
|
</Grid>
|
|
</DataTemplate>
|
|
|
|
</ResourceDictionary>
|