I\'m adding a new Row to a BindingSource that is Bound to a DataGridView
source.AddNew();
After this, use BindingSource to get the newly ad
Extending from Oliver Friedrich's answer, the function when created using the controls's property as shown in the designer will look like:
private void drv_RowsAdded(object sender, DataGridViewRowsAddedEventArgs e) { drv.Rows[e.RowIndex].Selected = true; }