Hi folks,
I have a BindableProperty in a custom control like so:
public static readonly BindableProperty ShowIndeterminateProperty =
BindableProperty.Create<CoreProgress, bool>(
p => p.ShowIndeterminate, false);
public bool ShowIndeterminate
{
get { return (bool)GetValue(ShowIndeterminateProperty); }
set { SetValue(ShowIndeterminateProperty, value); }
}
In my Android exported renderer for this control, my OnElementPropertyChanged gets called twice for this property change. Any idea why?
Thanks a lot,
Mike