.NET: How to know when serialization is completed?
- by Ian Boyd
When I construct my control (which inherits DataGrid), I add specific rows and columns. This works great at design time. Unfortunately, at runtime I add my rows and columns in the same constructor, but then the DataGrid is serialized (after the constructor runs) adding more rows and columns.
After serialization is complete, I need to clear…