Exemple #1
0
 private void fireWindowNormalizedEvent(unoidl.com.sun.star.lang.EventObject source)
 {
     if (WindowNormalized != null)
     {
         try
         {
             WindowNormalized.DynamicInvoke(this, new OoEventArgs(source));
         }
         catch (Exception ex) { Logger.Instance.Log(LogPriority.DEBUG, this, "can't fire window normalized event", ex); }
     }
 }
 void fireWindowNormalizedEvent(unoidl.com.sun.star.lang.EventObject Source)
 {
     if (WindowNormalized != null)
     {
         try
         {
             WindowNormalized.Invoke(this, new EventObjectForwarder(Source));
         }
         catch { }
     }
 }