Xamarin Forms Binding Tips

Xamarin Forms Binding Tips

Oct 14, 2019, 12:00 AM

XAML Binding

Only can bind Public Property not public Field

Nested Object

Again, Public Property Only.

TimeSpan

StartTime is DateTime.

    <Label
        Text="{Binding StartTime.TimeOfDay, StringFormat='{}{0:hh\\:mm}'}"
        Style="{DynamicResource ListItemDetailTextStyle}"
        VerticalTextAlignment="Center" />