Fading out a wpf window on close
问题 I want to fade a window in/out in my application. Fading in occurs on Window.Loaded and I wanted to fade out on close ( Window.Closed or Window.Closing ). Fading in works perfectly, but Window.Closing is not allowed value for RoutedEvent property. What RoutedEvent should I be using for Close? <Window.Triggers> <EventTrigger RoutedEvent="Window.Loaded"> <BeginStoryboard> <Storyboard> <DoubleAnimation Storyboard.TargetProperty="Opacity" From="0" To="1" Duration="0:0:2" FillBehavior="HoldEnd" />