Here is some C# code.
//subscribe to the event
CurrencyManager cm = (CurrencyManager) this.BindingContext[this.gridDataBoundGrid1.DataSource, this.gridDataBoundGrid1.DataMember];
IBindingList ibl = cm.List as IBindingList;
if(ibl != null)
ibl.ListChanged += new ListChangedEventHandler(ibl_ListChanged);
//the handler
private void ibl_ListChanged(object sender, ListChangedEventArgs e)
{
if (e.ListChangedType == ListChangedType.ItemAdded)
Console.WriteLine(Me.GridDataBoundGrid1.Model.RowCount);
}