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
Use the events from the DataGridView like this for this task:
private void RowsAdded(object sender, DataGridViewRowsAddedEventArgs e) { this.Rows[e.RowIndex].Selected = true; }
That marks the newly added row as the selected.