Ejemplo n.º 1
0
 void RaiseChangedEvent(PolygonChangeType t)
 {
     if (ChangedEvent != null)
     {
         ChangedEvent(this, new PolygonChangedEventArgs(t));
     }
 }
Ejemplo n.º 2
0
 public PolygonChangedEventArgs(PolygonChangeType t)
 {
     Type = t;
 }