Ejemplo n.º 1
0
 public void Complete()
 {
     if (osb.LocationPoint != null)
     {
         if (DrawCompleteEvent != null)
         {
             // AutoTrim(osb, Floor);
             DrawCompleteEvent.Invoke(new ActionEventArgs(osb));
         }
     }
     else
     {
         if (DrawTermimationEvent != null)
         {
             //  AutoTrim(osb, Floor);
             DrawTermimationEvent.Invoke(new ActionEventArgs(osb));
         }
     }
 }
Ejemplo n.º 2
0
 protected virtual void OnDrawCompleteEvent()
 {
     DrawCompleteEvent?.Invoke(this, EventArgs.Empty);
 }