This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace CustomControl | |
{ | |
public class BindablePicker : Picker | |
{ | |
#region Fields | |
//Bindable property for the items source | |
public static readonly BindableProperty ItemsSourceProperty = | |
BindableProperty.Create<BindablePicker, IEnumerable>(p => p.ItemsSource, null, propertyChanged: OnItemsSourcePropertyChanged); |