Exemple #1
0
        internal void Add(
            ListPickerItem item)
        {
            if (null == item)
            {
                throw new ArgumentNullException(nameof(item));
            }

            this.Renderer.AddItem(item);
        }
Exemple #2
0
 void IListPickerDelegate.NotifyItemSelected(
     ListPickerItem item)
 {
     this.SelectionChanged?.Invoke(this, item);
 }