Windows.UI.Xaml.FrameworkElement.Unloaded

June 22, 2022 ยท View on GitHub

-description

Occurs when this object is no longer connected to the main object tree.

-xaml-syntax

<frameworkElement Unloaded="eventhandler"/>

-remarks

Although this event uses the RoutedEventHandler delegate and RoutedEventArgs as event data, the event is not truly a routed event. It can only be handled on the element that originates the event (in other words, the sender). OriginalSource in event data for this event is always null.

-examples

-see-also