Pahelp naman po
XML:
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="Merryland.BookPage"
xmlns:local="clr-namespace:Merryland"
BindingContext="{x:Static local:VenueViewModel.Instance}">
<ContentPage.Content>
<ListView ItemsSource="{Binding Venues}" HasUnevenRows="True">
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<StackLayout>
<Image Source="{Binding ImageUrl}" />
<Label Text="{Binding VenueName}" />
<Label Text="{Binding Price, StringFormat='Price: {0:C}'}" />
<Label Text="{Binding Capacity, StringFormat='Capacity: {0}'}" />
<Label Text="{Binding StatusID, StringFormat='Status ID: {0}'}" />
</StackLayout>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</ContentPage.Content>
</ContentPage>