Win forms problem.
I have the following structure
Form
-> User Control
-> -> Panel
-> -> -> GridViewControl
When the grid view control adds a new row, the user control does not resize. I would like the user control to resize (and the panel as well ) to accommodate the increasing sized grid control.
Is there a way to configure properties to do this? Or do I need to do something programmatic?
I am thinking I may have to learn how to use delegates and notify the parent that the child control has resized so it can respond appropriately?