Set the value of the AllowNew property of the dataview to false.
If you are binding this datagrid to a datatable directly (maybe in design
view), then you will have to fetch the datatable's defaultview and then set
this property. The code would be something like this:
((DataView)((CurrencyManager)BindingContext[datatable
name]).List).AllowNew = false;