BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
//code to subscribe to thr event in formload
CurrencyManager cm = (CurrencyManager)this.BindingContext[this.gridDataBoundGrid1.DataSource, this.gridDataBoundGrid1.DataMember];
IBindingList list = cm.List as IBindingList;
list.ListChanged += new ListChangedEventHandler(cm_ListChanged);
//sample event handler
//the SetCoveredCells method clears the current covered cells and then goes through the data and sets then aagin
private void cm_ListChanged(object sender, ListChangedEventArgs e)
{
if(e.ListChangedType == ListChangedType.Reset)
SetCoveredCells();
}