c# - Order between OnHandleCreated and OnLoad -


on windows form, there guaranteed firing order between these, know? on .net v2. appears former(sorry) first.

thanks

onhandlecreated comes first.

from documentation:

the form , control classes expose set of events related application startup , shutdown. when windows forms application starts, startup events of main form raised in following order:

control.handlecreated

control.bindingcontextchanged

form.load

control.visiblechanged

form.activated

form.shown


Comments

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

aspxgridview - Devexpress grid - header filter does not work if column is initially hidden -

c# - How to execute a particular part of code asynchronously in a class -