我有一个具有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
方法。