Early Preview

This is currently very much a preview. Please feel free to try things out, but don't be upset if anything is not yet working. Feedback is welcome over on our GitHub Dicussions page.

enum System.​ComponentModel.​ListChangedType

Assembly: System.ComponentModel.TypeConverter

Specifies how the list changed.

Values

Reset
Much of the list has changed. Any listening controls should refresh all their data from the list.
ItemAdded
An item added to the list. <see cref="P:System.ComponentModel.ListChangedEventArgs.NewIndex" /> contains the index of the item that was added.
ItemDeleted
An item deleted from the list. <see cref="P:System.ComponentModel.ListChangedEventArgs.NewIndex" /> contains the index of the item that was deleted.
ItemMoved
An item moved within the list. <see cref="P:System.ComponentModel.ListChangedEventArgs.OldIndex" /> contains the previous index for the item, whereas <see cref="P:System.ComponentModel.ListChangedEventArgs.NewIndex" /> contains the new index for the item.
ItemChanged
An item changed in the list. <see cref="P:System.ComponentModel.ListChangedEventArgs.NewIndex" /> contains the index of the item that was changed.
PropertyDescriptorAdded
A <see cref="T:System.ComponentModel.PropertyDescriptor" /> was added, which changed the schema.
PropertyDescriptorDeleted
A <see cref="T:System.ComponentModel.PropertyDescriptor" /> was deleted, which changed the schema.
PropertyDescriptorChanged
A <see cref="T:System.ComponentModel.PropertyDescriptor" /> was changed, which changed the schema.