void IList.Insert (int index, object item)
{
if (item is ListViewItem)
this.Insert (index, (ListViewItem) item);
else
this.Insert (index, item.ToString ());
//UIA Framework event: Item Added
OnUIACollectionChangedEvent (new CollectionChangeEventArgs (CollectionChangeAction.Add, this [index]));
}