Hi,
Explain Silverlight application life-cycle in detail ?
Thanks
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Jignesh TrivediPosted Mar 27, 2012, 11:49 PM
Silverlight is running on client , not on server just like asp.net application.
there is no such life cycle in silverlight but just like asp.net some events are fired in specific order.
1) first call app constructor (app.xaml)
2) after this application_start execute
3) main page contructor and initialize component.
4) SizeChanged event and Then the LayoutUpdated event.
5) Silverlight app exit or close the Browser the App's Application_Exit event will be executed
please refer.
http://blogs.msdn.com/b/devdave/archive/2008/10/11/control-lifecycle.aspx
hope this help.