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