Ejemplo n.º 1
0
 public void Remove(XG_ListBoxItem item)
 {
     if (Items.Contains(item))
     {
         Items.Remove(item);
         NotifyListChanged();
     }
 }
Ejemplo n.º 2
0
 public void Add(XG_ListBoxItem item)
 {
     Items.Add(item);
     NotifyListChanged();
 }