Inheritance: System.Windows.RoutedEventArgs
Example #1
0
        void RaiseImageFailedEvent(Exception exp)
        {
            AnimationImageExceptionRoutedEventArgs newArgs = new AnimationImageExceptionRoutedEventArgs(ImageFailedEvent, this);

            newArgs.ErrorException = exp;
            RaiseEvent(newArgs);
        }
Example #2
0
 void RaiseImageFailedEvent(Exception exp)
 {
     AnimationImageExceptionRoutedEventArgs newArgs = new AnimationImageExceptionRoutedEventArgs(ImageFailedEvent, this);
     newArgs.ErrorException = exp;
     RaiseEvent(newArgs);
 }