有多少次调用BindableProperty propertyChanged的情况是什么?

时间:2017-12-14 15:53:14

标签: xamarin mvvm xamarin.forms

我有一个具有ItemsSource属性的自定义控件,我在XAML中设置如下:

<Controls:RadioButtonsGroup Grid.Column="1" ItemsSource="{Binding lstGender}" Orientation="Horizontal" SelectedItem="{Binding SelectedGender}" HorizontalOptions="Fill"/>

支持财产:

public static readonly BindableProperty ItemsSourceProperty = BindableProperty.Create(nameof(ItemsSource), typeof(IEnumerable<object>), typeof(RadioButtonsGroup), propertyChanged: OnItemsSourceChanged);

问题是,当我从页面返回并再次输入时,会多次调用OnItemsSourceChanged方法。

0 个答案:

没有答案