Esempio n. 1
0
 public void Remove(XGListBoxItem item)
 {
     if (Items.Contains(item))
     {
         Items.Remove(item);
         NotifyListChanged();
     }
 }
Esempio n. 2
0
 public void Add(XGListBoxItem item)
 {
     Items.Add(item);
     NotifyListChanged();
 }