ContainerListViewItem.Clone
Brought to you by:
tamc
In ContainerListViewItem.Clone(), the capacity of the _subItems Collection was not set, so an ArgumentOutOfRangeException is raised, when setting SubItems.
Previous code:
for(int index = 0; index < _subItems.Count; ++index)
lvi._subItems[index] = _subItems[index].Clone();
My guess:
for(int index = 0; index < _subItems.Count; ++index)
lvi._subItems.Add(_subItems[index].Clone());
Besides that the two controls behave wonderful and I encountered nothing else (However, I'm pleased with just the basic features). Thanks!