I am using Binding List in my application along with ItemChanged event.
Is there any way I could know the previous values of properties in ItemChanged event. Curren
In the specific case you're using this BindingList with a DataGridView, you can use the UserDeletingRow event from the datagrid, where:
private void myGrid_UserDeletingRow(object sender, DataGridViewRowCancelEventArgs e)
{
ItemType DeletedItem = (ItemType)e.Row.DataBoundItem;
//if you want to cancel deletion
e.Cancel = true;
}