Код: Выделить всё
List list = new List();
System.Windows.Forms.DataGridView dataGridView1;
dataGridView1.DataSource = new BindingSource(list, null);
dataGridView1.UserAddedRow += new System.Windows.Forms.DataGridViewRowEventHandler(this.dataGridView1_UserAddedRow);
void dataGridViewMilight_UserAddedRow(object sender, DataGridViewRowEventArgs e) {
// e.Row.DataBoundItem is always null?
}
Подробнее здесь: https://stackoverflow.com/questions/285 ... tagridview