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

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