What is the open event order of controlitems inside a window?

it seems the order for the controlitems inside a window to execute the open event
is the creation order inside the ide
couldn’t it be the tab order ? as sometimes you need to initialize things before another ?

You can expect Window.Opening to occur *after* all controls have raised their Control.Opening event. You cannot expect any other particular control to exist during Control.Opening. If you need to expect a control exists, wait until the Window event.

1 Like