示例#1
0
 public void Remove(XGListBoxItem item)
 {
     if (Items.Contains(item))
     {
         Items.Remove(item);
         NotifyListChanged();
     }
 }
示例#2
0
 public void Add(XGListBoxItem item)
 {
     Items.Add(item);
     NotifyListChanged();
 }