Esempio n. 1
0
        /// <summary>
        /// Remove this item from its associated collection
        /// </summary>
        public new void Remove()
        {
            if (ListView != null)
            {
                if (ListView.InvokeRequired)
                {
                    throw(new Exception("Invoke required"));
                }
            }
            TreeListViewItemCollection collection = this.Container;

            if (collection != null)
            {
                collection.Remove(this);
            }
        }