Esempio n. 1
0
 void RaiseImageFailedEvent(Exception exp)
 {
     try
     {
         ImageAnimExceptionRoutedEventArgs newArgs = new ImageAnimExceptionRoutedEventArgs(ImageFailedEvent, this);
         newArgs.ErrorException = exp;
         RaiseEvent(newArgs);
     }
     catch (Exception ex)
     {
         VMuktiAPI.VMuktiHelper.ExceptionHandler(ex, "RaiseImageFailed()", "Controls\\VMuktiGrid\\ImageAnim.cs");
     }
 }