OnItemRemovedAt() 개인적인 메소드

Raises the ItemRemovedAt Event when an item is removed from the items collection.
private OnItemRemovedAt ( int index, System.Windows.Forms.ListViewItem Item ) : void
index int
Item System.Windows.Forms.ListViewItem
리턴 void
예제 #1
0
 /// <summary>
 /// New implementation of Remove method hides Remove method defined on base class
 /// and causes an event to be sourced informing the parent about item Removals.
 /// </summary>
 /// <param name="index"></param>
 public new void RemoveAt(int index)
 {
     System.Windows.Forms.ListViewItem Item = this[index];
     base.RemoveAt(index);
     _Owner.OnItemRemovedAt(index, Item);
 }