Hanselman’s Interview: Datagrid Binding Events

What events fire when binding data to a data grid? What are they good for?

The unique events that fire during data binding on a datagrid are itemcreated and itemdatabound. They can be used to modify the components of a grid row programmatically. Use itemcreated unless you need access to the bound data, in which case you’d use itemdatabound.