Given a DataGridControl, is there a way to get a reference to its InsertionRow?
Or, given an InsertionRow, I can override EndInit or somesuch to get some code in there, but is there any way to get the DataGridControl it's being created for?
If it was just created once, I could exploit the timing locality between the creation of the two objects and snag a reference that way, but I'm assuming virtualization means old refs to InsertionRow may become invalid and new ones created at unpredictable times, so I need an on-the-fly solution.