Ejemplo n.º 1
0
        internal bool RemoveItem(object item)
        {
            if (ProtectedItems.Remove(item))
            {
                if (!(item is StandardCollectionViewGroup))
                {
                    DecrementCount();
                }
                return(true);
            }

            return(false);
        }
Ejemplo n.º 2
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="item"></param>
 protected void RemoveItem(object item)
 {
     ProtectedItems.Remove(item);
     ProtectedItemCount--;
 }