コード例 #1
0
ファイル: XG_ListBox.cs プロジェクト: dantedom/editormod
 public void Remove(XG_ListBoxItem item)
 {
     if (Items.Contains(item))
     {
         Items.Remove(item);
         NotifyListChanged();
     }
 }
コード例 #2
0
ファイル: XG_ListBox.cs プロジェクト: dantedom/editormod
 public void Add(XG_ListBoxItem item)
 {
     Items.Add(item);
     NotifyListChanged();
 }