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.
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
Post a Comment