Ejemplo n.º 1
0
 public string At(int index)
 {
     return(SelectionItems.ElementAt(index).Current.Name);
 }
Ejemplo n.º 2
0
 public void Remove(int index)
 {
     SelectionItems.ElementAt(index).AsSelectionItem().RemoveFromSelection();
 }
Ejemplo n.º 3
0
 private SelectionItemPattern SelectionNamed(string value)
 {
     return(SelectionItems.First(x => x.Current.Name == value).AsSelectionItem());
 }