Exemplo n.º 1
0
 public void OnEventNotification(AddinFiredEventType eventType)
 {
     if (m_Instance != null)
     {
         m_Instance.OnEventNotification(eventType);
     }
 }
Exemplo n.º 2
0
 public void OnEventNotification(AddinFiredEventType eventType)
 {
     if (eventType == AddinFiredEventType.BeginMultiFrameAstrometry)
     {
         m_MeasurementsExportAddin.OnBeginMultiFrameAstrometry();
     }
     else if (eventType == AddinFiredEventType.EndMultiFrameAstrometry)
     {
         m_MeasurementsExportAddin.OnEndMultiFrameAstrometry();
     }
 }
Exemplo n.º 3
0
 public void OnEventNotification(AddinFiredEventType eventType)
 {
     if (eventType == AddinFiredEventType.LightCurveSelectedFrameChanged)
     {
         try
         {
             if (m_AotaAction != null)
             {
                 m_AotaAction.OnLightCurveSelectedFrameChanged();
             }
         }
         catch (Exception ex)
         {
             Trace.WriteLine(ex.ToString());
         }
     }
 }
Exemplo n.º 4
0
 public void OnEventNotification(AddinFiredEventType eventType)
 {
 }
Exemplo n.º 5
0
 public void OnEventNotification(AddinFiredEventType eventType)
 {
     if (m_Instance != null)
         m_Instance.OnEventNotification(eventType);
 }
Exemplo n.º 6
0
 public void OnEventNotification(AddinFiredEventType eventType)
 {
     if (eventType == AddinFiredEventType.LightCurveSelectedFrameChanged)
     {
         try
         {
             if (m_AotaAction != null)
                 m_AotaAction.OnLightCurveSelectedFrameChanged();
         }
         catch (Exception ex)
         {
             Trace.WriteLine(ex.ToString());
         }
     }
 }
Exemplo n.º 7
0
 public void OnEventNotification(AddinFiredEventType eventType)
 {
 }
Exemplo n.º 8
0
 public void OnEventNotification(AddinFiredEventType eventType)
 {
     if (eventType == AddinFiredEventType.BeginMultiFrameAstrometry)
     {
         m_MeasurementsExportAddin.OnBeginMultiFrameAstrometry();
         m_AstrometryExportAddin.OnBeginMultiFrameAstrometry();
     }
     else if (eventType == AddinFiredEventType.EndMultiFrameAstrometry)
     {
         m_MeasurementsExportAddin.OnEndMultiFrameAstrometry();
         m_AstrometryExportAddin.OnEndMultiFrameAstrometry();
     }
 }