Created
August 3, 2020 20:19
-
-
Save dhindrik/ef9b9521021a16f743c64e0307b34dea to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<CarouselView ItemSource="{Binding Persons, Mode=OneTime}"> | |
<CarouselView.ItemTemplate> | |
<DataTemplate x:DataType="models:Person"> | |
<Grid RowDefinitions="*, 30"> | |
<Image Source="{Binding Photo, Mode=OneTime}" /> | |
<Label Grid.Row="1" Text="{Binding Name Mode=OneTime}" /> | |
</Grid> | |
</DataTemplate> | |
</CarouselView.ItemTemplate> | |
</CarouselView> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment