Silverlight 2 is missing the unload event for a UserControl. Has anyone implemented a workaround for this?
Missing Unload event in Silverlight 2
2k Views Asked by Phillip Ngan At
3
There are 3 best solutions below
0

you might want to look here: http://gallery.expression.microsoft.com/en-us/SLUnloadedBehavior
The code is for SL 3 but if you remove the behavior code it should work for Sl2
@KeithMahony
One scenario is that you want to prevent event memory leaks, one of the pitfalls of silverlight development that most people tend to ignore.
I think the closest you'll get is Application Services which let you detect when the Silverlight application is closing and respond to it. If you're using a Navigation application then you can hook into the Navigating event of the parent frame to determine that the page is "unloading".
What are you trying to do that requires a UserControl to respond to an unloading event?