C
Cary Linkfield
I have created a custom class inheriting CollectionBase and implementing
IBindingList. I am binding the list to a datagrid. I would like to have a
property on the class that works like the RowState of a DataRow that can
tell the datagrid not to display the item anymore after it is marked for
deletion by the user. I have a property on the class that indicates whether
the item is Added, Unchanged, Modified or Deleted.
I would like to keep the "deleted" item in the list of objects so I can
correctly process it when the user decides to save changes.
IBindingList. I am binding the list to a datagrid. I would like to have a
property on the class that works like the RowState of a DataRow that can
tell the datagrid not to display the item anymore after it is marked for
deletion by the user. I have a property on the class that indicates whether
the item is Added, Unchanged, Modified or Deleted.
I would like to keep the "deleted" item in the list of objects so I can
correctly process it when the user decides to save changes.