Here is what I would like to do. The app's main form is a MdiContainer
containing forms. When the user changes the size of the container the
child forms are resized, too. I need to catch the beginning and end of
the resizing of the child form. How can this be done.
This is what is done currently. The container overrides OnResize. In
this function the children's position and size is continuously adjusted
as the user keeps on resizing the container. In the child forms I have
overriden ResizeBegin and ResizeEnd. Unfortunately, they are not being
called as they only react to manual resizing and not to
programmatically changed sizes (like SizeChanged vs Resize). Are there
any events like ResizeBegin and ResizeEnd that also respond when the
resizing is done programmatically? If not what is the best solution to
achieve this besides the main form telling the children that resizing
begins/ends?
Thanks