AutoCatUwp/AutoCat/Resources/Templates/VehicleDetailPage.xaml

22 lines
833 B
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">
<DataTemplate x:Key="VehicleDetailTemplate" x:DataType="model:Vehicle">
<Grid Margin="16">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<StackPanel Orientation="Horizontal" Background="Coral" Spacing="8">
<Image Source="{Binding Brand.Logo}" Height="50"/>
<TextBlock Text="{Binding Brand.Name.Original}" FontSize="24" VerticalAlignment="Center"/>
</StackPanel>
</Grid>
</DataTemplate>
</ResourceDictionary>