Let\'s say I have a class:
class Foo { public string Bar { get { ... } } public string this[int index] { get { ... } } }
I
PropertyChanged( this, new PropertyChangedEventArgs( "Item[]" ) )
for all indexes and
PropertyChanged( this, new PropertyChangedEventArgs( "Item[" + index + "]" ) )
for a single item
greetings, jerod