DevsDNA / DNAXFCircularProgress

Circular progress chart with text and animations
Apache License 2.0
24 stars 5 forks source link

How can bind in listview #4

Open msatya411 opened 5 years ago

msatya411 commented 5 years ago

<control:XFCircleProgress WidthRequest="100" HeightRequest="100" VerticalOptions="CenterAndExpand" HorizontalOptions="CenterAndExpand" Maximun="100" Minimun="0" Value="{Binding fvvalue}" BackColor="LightGray" ForeColor="Green" BarHeight="5" AnimationDuration="1000" Grid.Row="0"/>

Galle94 commented 5 years ago

Try changing Binding Properties like static props.

Ex: 'public static readonly BindableProperty ValueProperty = BindableProperty.Create(nameof(Value), typeof(int), typeof(XCircleProgress), default(int));'

This solved my issue.