Does there exist a concise tree or map showing which form events are triggered by which other events?
ex: Control.SizeChanged
calls Control.Layout
but does Control.BackgroundImageChanged
call Layout
or BackgroundImageLayout
? etc.
The reason I ask (which shouldn't matter) is:
I'm attempting to catch several events related to form resize, move and images changing.
I don't want to doubly handle events that microsoft decided to create too many events for such as control.resize
and control.sizechanged
.