Quantcast
Channel: Xamarin.Forms — Xamarin Community Forums
Viewing all articles
Browse latest Browse all 77050

OnElementPropertyChanged only fires once

$
0
0

I have this bindable property for my custom renderer , when I change the property for the first time
OnElementPropertyChanged in custom renderer gets fired but on next change it doesn't fire.
any idea about why it works only once?

public static readonly BindableProperty NumberProperty =
            BindableProperty.Create<MyView, string>(p => p.Number, null,BindingMode.TwoWay);

public string  Number { get { return (string)GetValue(NumberProperty ); } 
            set { SetValue (NumberProperty, value); } } // it would rise ElementPropertyChanged event}

and in my custom renderer

protected override void  OnElementPropertyChanged(object sender, PropertyChangedEventArgs e)
        {
            // handle elemnt property change
        }

Viewing all articles
Browse latest Browse all 77050

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>