FrameworkElement.Unloaded Event
Assembly: PresentationFramework (in presentationframework.dll)
XML Namespace: http://schemas.microsoft.com/winfx/2006/xaml/presentation
'Declaration Public Event Unloaded As RoutedEventHandler 'Usage Dim instance As FrameworkElement Dim handler As RoutedEventHandler AddHandler instance.Unloaded, handler
/** @event */ public void add_Unloaded (RoutedEventHandler value) /** @event */ public void remove_Unloaded (RoutedEventHandler value)
In JScript, you can handle the events defined by a class, but you cannot define your own.
<object Unloaded="RoutedEventHandler" .../>
Direct routed events do not follow a route, they are only handled within the same element on which they are raised. Direct routed events do support other routed event behavior: they support an accessible handlers collection, and can be used as an EventTrigger in a style.
Loaded and Unloaded might both be raised on controls as a result of user-initiated system theme changes. A theme change causes an invalidation of the control template and the contained visual tree, which in turn causes the entire control to unload and reload. Therefore Unloaded cannot be assumed to occur only on navigation away from the page.
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.