public bool Remove(FrameworkElement item) => InternalCollection.Remove(item.GetType().FullName);
 public bool Remove(string itemName) => InternalCollection.Remove(itemName);
Esempio n. 3
0
 public bool Remove(TKey key)
 {
     return(collection.Remove(key));
 }
Esempio n. 4
0
 public bool Remove(IMenuInfo item) => InternalCollection.Remove(item);
 public bool Remove(TaskbarThumbButtonInfo item)
 {
     return(InternalCollection.Remove(TaskbarThumbButtonInfoWrapper.Wrap(item)));
 }