public void Remove(XG_ListBoxItem item) { if (Items.Contains(item)) { Items.Remove(item); NotifyListChanged(); } }
public void Add(XG_ListBoxItem item) { Items.Add(item); NotifyListChanged(); }