I need a row Added event for a DataGridView
- by tizzyfoe
What i want to do is set the background of a row based on some criteria, but the datagrid will be fairly large so i don't want to have to loop over all the rows again. The rows get created me doing something like "myDataGridView.DataSource = MyDataSource, so the only way i can think to edit rows is by using an event.
there is a row*s* added event, but that gives me a list of rows that i'd have to iterate over.
Thanks in advance for any help.